Displaying 1 result from an estimated 1 matches for "msg_apm_disconnect".
2005 Sep 17
2
com16/com32 module for APM powerdown
..._apm_vreport_err
; must enable apm bios?
apm_enable:
mov cx, [apm_flags]
and cx, 0x4
jz apm_off
; enable apm bios
apm 8, 1, 1
jc apm_off
print msg_apm_enabled
; send shutdown command
apm_off:
apm 7, 1, 3
jnc apmerr
print msg_apm_off_err
; apm failed, disconnect
apmerr:
print msg_apm_disconnecting
apm 4, 0, 0
exit:
mov ax, 0x4c01
int 0x21
apm_flags dw 0
apm_version dw 0
%define endl 0x2e, 0x0a, 0x0d, 0x24
msg_cpy db "APM/ACPI Off", 0x0a, 0x0d
db "Copyright (C) 1999,2005 Luciano Rocha", endl
msg_noapm db "APM not detected", endl
msg_apmve...