Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1879 Albom 1
 
2
3
 
4
public _hStack
5
public _KOL_PATH
6
public _KOL_PARAM
7
8
 
9
extrn hEnd
10
11
 
12
13
 
14
	db "MENUET01"
15
	dd 1, Start, hEnd, Memory, _hStack, _KOL_PARAM, _KOL_PATH
16
17
 
18
19
 
20
mov	eax, 68
21
mov	ebx, 11
22
int	0x40
23
24
 
25
mov	eax, _kol_main
26
call	eax
27
28
 
29
mov	eax, -1
30
int	0x40
31
32
 
33
34
 
35
_KOL_PATH rb 256
36
37
 
38
_hStack:
39