Subversion Repositories Kolibri OS

Rev

Rev 8911 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1498 serge 1
use32
2
 
8911 leency 3
format binary as ""
4
 
1498 serge 5
db 'MENUET01'
6
dd 1
7
dd start
8
dd i_end
9
dd mem
10
dd mem
11
dd 0
8911 leency 12
dd app_path
1498 serge 13
 
8911 leency 14
include '../../programs/macros.inc'
15
include '../../programs/proc32.inc'
16
include '../../programs/string.inc'
17
 
1498 serge 18
start:
8911 leency 19
	   stdcall string.concatenate, sz_dll, app_path
20
	   mov  eax, 68
21
	   mov  ebx, 21
22
	   mov  ecx, app_path
23
	   int  0x40
1498 serge 24
 
8911 leency 25
	   mov  eax, -1
26
	   int  0x40
1498 serge 27
 
28
align 4
8911 leency 29
app_path rb 2048
9499 turbocat 30
sz_dll db '.sys',0
1498 serge 31
i_end:
32
rb 128
33
mem: