search for: apm_off

Displaying 1 result from an estimated 1 matches for "apm_off".

Did you mean: aspm_off
2005 Sep 17
2
com16/com32 module for APM powerdown
...apm_error_connect jmp exit ; apm connected apmc: print msg_apm_connected mov cx, [apm_version] cmp cx, 0x0101 jl apm_enable ; report driver version apm 0xe, 0, cx jnc apm_enable print msg_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...