kolibrios/drivers/devman/acpi.asm
turbocat 8848af8de1 Devman (acpi.sys):
- Fixed errors breaking build; 
- Added to auto build;

git-svn-id: svn://kolibrios.org@9499 a494cfbc-eb01-0410-851d-a64ba20cac60
2021-12-27 18:22:14 +00:00

34 lines
462 B
NASM

use32
format binary as ""
db 'MENUET01'
dd 1
dd start
dd i_end
dd mem
dd mem
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, app_path
int 0x40
mov eax, -1
int 0x40
align 4
app_path rb 2048
sz_dll db '.sys',0
i_end:
rb 128
mem: