search for: 0006h

Displaying 3 results from an estimated 3 matches for "0006h".

Did you mean: 0006
2004 Feb 03
0
COMBoot questions
...03h, INT 22h with a C-string like "linux vga=317" in ES:BX or "kernel.bzi vga=317" ? Should I return from my VESA mode into normal 80x25 textmode (I'm trying to hide as much from Linux as possible simply for aestetic reasons ;-) The second question is about open file, AX=0006h, INT 22h... does it support sub-directories ? Like "images\main.pcx" ? Thnx a lot, Marc -- Marc Haisenko Systemspezialist Webport IT-Services GmbH mailto: haisenko at webport.de
2011 Feb 18
1
[PATCH] core: Allow pasting from a VMware host by typing Ctrl-P
...ffer +VMwareMagic equ 564D5868h ; VMWare magic number +VMwarePort equ 5658h ; VMWare magic port +vmware_paste: + mov eax,VMwareMagic + mov ebx,0 + mov cx,000ah ; Get VMware version + mov dx,VMwarePort + in eax,dx + cmp ebx,VMwareMagic + jne vmware_done + + mov eax,VMwareMagic + mov cx,0006h ; Get clipboard length + mov dx,VMwarePort + in eax,dx + and eax,eax + jz vmware_done + cmp eax,0ffffffffh + jz vmware_done + mov ebx,eax + +vmware_get_data: + mov eax,VMwareMagic + mov cx,00007h ; Get clipboard data + mov dx,VMwarePort + in eax,dx + mov ecx,4 + +vmware_paste_char:...
2009 Mar 21
0
[PATCH 1/1] SYSLINUX/COMBOOT: Abstract searchdir and fix the opendir call
From: Gene Cumm <gene.cumm at gmail.com> SYSLINUX/COMBOOT: Abstract searchdir and fix the opendir call Signed-off-by: Gene Cumm <gene.cumm at gmail.com> --- First, change comboot.inc such that INT 22h AX=0020h (opendir) is about as simple and similar in behavior to INT 22h AX=0006h (openfile). Next, rename the function searchdir to searchdir4any, create a new function called searchdir and move all regular file-specific code to searchdir. This allows for future expansion into a more generic directory searching capability. Last, create a function searchdir4dir designed to fi...