Displaying 2 results from an estimated 2 matches for "dkhc".
Did you mean:
dhc
2010 Jul 01
2
[PATCH] ifplop.c32: Detect if PLoP USB/CD INT13h hook is enabled/disabled
New module which check if the PLoP Boot Loader already has booted a
CDROM or USB drive by checking for the presence of the PLoP INT13h hook.
The following assembly code (NASM) can detect the PLoP INT13h hook:
mov eax,'PoLP' ; Reverse of 'PLoP'
mov ebp,'DKHC' ; Reverse of 'CHKD'
int 13h
cmp eax,' sey' ; Reverse of 'yes '
jz plop_INT13h_active
Signed-off-by: Gert Hulselmans <gerth at zytor.com>
Signed-off-by: Shao Miller <shao.miller at yrdsb.edu.on.ca>
---
com32/modules/Makefile | 2 +-
com32/modules...
2010 Jun 13
0
[PATCH]: ifplop.c32: COM32 module for detection of PLoP USB boot-loader
I wrote a COM32 module which detects if the PLoP bootmanager was used to
boot a CDROM drive or USB drive, by checking for the presence of the PLoP
INT13h hook.
The PLoP INT13h hook check works like this (NASM syntax):
mov eax,'PoLP' ; Reverse of 'PLoP'
mov ebp,'DKHC' ; Reverse of 'CHKD'
int 13h
cmp eax,' sey' ; Reverse of 'yes '
jz plop_int13_active
More info: http://forum.plop.at/index.php/topic,165.0.html
The syntax for using this module is the same as for ifcpu.c32 and
ifcpu64.c32:
Usage: ifplop.c32 [<plop_dete...