Subversion Repositories Kolibri OS

Rev

Rev 8245 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
8140 IgorA 1
use32
2
org 0
3
  db 'MENUET01'
4
  dd 1
5
  dd @Kolibri@Main$qv
6
  dd I_END
8245 IgorA 7
  dd U_END+STACKSIZE ;+HEAPSIZE
8140 IgorA 8
  dd U_END+STACKSIZE
8236 IgorA 9
if defined @Kolibri@CommandLine
10
  dd @Kolibri@CommandLine
11
else
12
  dd 0
13
end if
14
if defined @Kolibri@CurrentDirectoryPath
15
  dd @Kolibri@CurrentDirectoryPath
16
else
17
  dd 0
18
end if
8140 IgorA 19
 
8919 IgorA 20
include "..\..\KOSfuncs.inc"
21
include "..\..\proc32.inc"
22
include "..\..\macros.inc"
23
include "..\..\dll.inc"
24
include "..\..\load_lib.mac"
8165 IgorA 25
 
8140 IgorA 26
ptr equ
27
offset equ
28
short equ
29
tbyte equ tword
30
 
31
PTR equ
32
OFFSET equ
33
SHORT equ
34
TBYTE equ TWORD
35
 
36
macro segment name {}
37
 
38
macro endseg  name {}
39