Apps: fixed 3 programs for using a long path in parameters
[kolibrios.git] / drivers / devman / acpi.asm
blobb5b3de6d12915155485274e026777d78fb870932
1 use32
3 format binary as ""
5 db 'MENUET01'
6 dd 1
7 dd start
8 dd i_end
9 dd mem
10 dd mem
11 dd 0
12 dd app_path
14 include '../../programs/macros.inc'
15 include '../../programs/proc32.inc'
16 include '../../programs/string.inc'
18 start:
19 stdcall string.concatenate, sz_dll, app_path
20 mov eax, 68
21 mov ebx, 21
22 mov ecx, app_path
23 int 0x40
25 mov eax, -1
26 int 0x40
28 align 4
29 app_path rb 2048
30 sz_dll db '.sys',0
31 i_end:
32 rb 128
33 mem: