Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8910 → Rev 8911

/drivers/devman/acpi.asm
1,6 → 1,7
 
use32
 
format binary as ""
 
db 'MENUET01'
dd 1
dd start
8,20 → 9,25
dd mem
dd mem
dd 0
dd 0
dd app_path
 
include '../../programs/macros.inc'
include '../../programs/proc32.inc'
include '../../programs/string.inc'
 
start:
stdcall string.concatenate, sz_dll, app_path
mov eax, 68
mov ebx, 21
mov ecx, sz_acpi
mov ecx, app_path
int 0x40
 
mov eax, -1
int 0x40
 
sz_acpi db '/rd/1/drivers/acpi.dll',0
 
align 4
app_path rb 2048
sz_dll db '.dll',0
i_end:
rb 128
mem: