search for: 07h

Displaying 12 results from an estimated 12 matches for "07h".

Did you mean: 07
2009 Apr 30
2
[1/1] [gfxboot] align buffer used to read data from disk to a 512 byte boundary
The COM API provides a function to read from disk (int 22h, AX=07h) which needs a destination buffer aligned on a 512 byte boundary. gfxboot uses this function but doesn't ensure its data buffer is properly aligned. This leads to failures on a few machines (HP Pavillion dv5): gfxboot: isolinux: Disk error 09, AX = 424F, drive FE https://qa.mandriva.com/show_...
2004 Sep 11
1
serial vs console and serialonly
...and it seems youve already started adding this feature. If so great, but how do I control it from a config-file ? I didnt see any new keywords. Also, it appears that get_msg_file: writes to both serial & console unconditionally, is that your intent ? mov byte [DisplayMask],07h ; Display text in all modes Also, Im seeing a possible bug in 2.06 wrt a global APPEND not being overridden by a specific KERNEL line (sorry for vagueness, Ill check more thoroughly tomorrow - and against 2.11 - its late and Im tired - and probly a little sloppy) your FAQ says The options...
2004 Dec 09
1
EDD error RE: Re: SYSLINUX 2.12-pre7 released
...Bernd http://fdos.org/ripcord/beta9sr1/other/misc/Udma2_16.zip output on screen (sourcecode in UDMA2.ASM, line 855 and 736 ??? ) UDMA2 Disk Driver V1.6, 2-Dec-2004. Output overlap is disabled. UltraDMA controller found at I-O address 1050h. Vendor/Device I.D. 8086h/7111h. PCI bus 00h, device 07h, function 1 No XMS manager; using only DMA I-O, NO Output Overlap! Primary-master disk is VMware Virtual IDE Hard Drive. Set to UltraDMA mode2, ATA-33. Read tests omitted BIOS EDD error; driver NOT loaded! ---------------------------------------------------------------- Op deze e-mail zijn...
2001 Nov 27
1
Dial-up connection
Hi there I use a winmodem wich is apache a56sp-hcf and Windows 98 how Can l start dial ?up connection with wine best regards -------------- next part -------------- An HTML attachment was scrubbed... URL: http://www.winehq.org/pipermail/wine-users/attachments/20011127/bf822bde/attachment.htm
2009 May 04
3
[RFC][PATCH] poweroff COMBOOT module
...er Version (0Eh) + xor bx,bx ; APM BIOS (0000h) + mov cx,0101h ; APM Driver version 1.1 + int 15h + jnc apm0101_check + + mov bx, msg_notsup + jmp error + +apm0101_check: + cmp cx,0101h ; APM Connection version + jae apm0101_ok + + mov bx, msg_notsup + jmp error + +apm0101_ok: + mov ax,5307h ; Set Power State (07h) + mov bx,0001h ; All devices power managed by the APM BIOS + mov cx,0003h ; Power state off + int 15h + jnc off + + mov bx, msg_failed + +error: + mov ax,2 + int 22h +off: + ret + +msg_notpresent: db 'APM not present.',0dh,0ah,0 +msg_notsup: db 'APM 1.1+...
2009 Mar 22
1
[PATCH] [memdisk] Additional comments in memdisk.inc and postprocess.pl
...x mov ebx,[cs:Mem16MB] mov edx,ebx jmp short int15_success -int15_88: +int15_88: ; Get extended mem size mov ax,[cs:MemInt1588] jmp short int15_success @@ -805,7 +812,8 @@ Int13Funcs dw Reset ; 00h - RESET dw Invalid ; 06h - FORMAT TRACK AND SET BAD FLAGS dw Invalid ; 07h - FORMAT DRIVE AT TRACK dw GetParms ; 08h - GET PARAMETERS - dw InitWithParms ; 09h - INITIALIZE CONTROLLER WITH DRIVE PARAMETERS + dw InitWithParms ; 09h - INITIALIZE CONTROLLER WITH + ; DRIVE PARAMETERS dw Invalid ; 0Ah dw Invalid ; 0Bh dw Seek ; 0Ch - SEEK TO CYLINDER diff...
2002 Jul 11
1
help with porting patch from 1.62 to 1.75
...u 256*3 + ; --------------------------------------------------------------------------- ------- ; Begin data section ; --------------------------------------------------------------------------- ------- @@ -4292,6 +4379,13 @@ VGAFontSize dw 16 ; Defaults to 16 byte font ScrollAttribute db 07h ; White on black (for text mode) ; +; wingel -- swap magic +; +swap_name db 'SWAP ' +swap_loading db 'Loading boot sector from hard drive...', 0 +swap_booting db 'Booting from hard drive...',0 +swap_failed db 'Failed to read boot sector from hard drive',13,1...
2013 Feb 10
4
[PATCH] poweroff COM32 module
...f (outregs.eflags.l & EFLAGS_CF) { + printf("APM 1.1+ not supported.\n"); + return 1; + } + + if ((outregs.ecx.l & 0xffff) < 0x101) { /* APM Connection version */ + printf("APM 1.1+ not supported.\n"); + return 1; + } + + inregs.eax.l = 0x5307; /* Set Power State (07h) */ + inregs.ebx.l = 1; /* All devices power managed by the APM BIOS */ + inregs.ecx.l = 3; /* Power state off */ + __intcall(0x15, &inregs, &outregs); + + if (outregs.eflags.l & EFLAGS_CF) { + printf("Power off failed.\n"); + return 1; + } + + return 0; +} -- 1.7.3.4
2003 Dec 27
0
2 disks boot patch
...registered vkernels ForcePrompt dw 0 ; Force prompt AllowImplicit dw 1 ; Allow implicit kernels SerialPort dw 0 ; Serial port base (or 0 for no serial port) VGAFontSize dw 16 ; Defaults to 16 byte font UserFont db 0 ; Using a user-specified font ScrollAttribute db 07h ; White on black (for text mode) ; ; Stuff for the command line; we do some trickery here with equ to avoid ; tons of zeros appended to our file and wasting space --- syslinux-2.08.orig/runkernel.inc 2003-08-22 05:39:37.000000000 +0200 +++ syslinux-2.08/runkernel.inc 2003-12-18 23:16:18.000000...
2003 Dec 27
0
FW: 2 disks boot patch
...registered vkernels ForcePrompt dw 0 ; Force prompt AllowImplicit dw 1 ; Allow implicit kernels SerialPort dw 0 ; Serial port base (or 0 for no serial port) VGAFontSize dw 16 ; Defaults to 16 byte font UserFont db 0 ; Using a user-specified font ScrollAttribute db 07h ; White on black (for text mode) ; ; Stuff for the command line; we do some trickery here with equ to avoid ; tons of zeros appended to our file and wasting space --- syslinux-2.08.orig/runkernel.inc 2003-08-22 05:39:37.000000000 +0200 +++ syslinux-2.08/runkernel.inc 2003-12-18 23:16:18.000000...
2011 May 25
1
[GIT PULL] elflink ldlinux
Hi, These patches contain support for some features that are already in Syslinux 4 but weren't working properly on the elflink branch. It's another step closer to feature parity with Syslinux 4. Having to jump through the comboot API for localboot support is less than ideal and I'll eventually fix that, probably when we move a big chunk of code from asm to C. Also, there's a
2012 Jun 24
0
nouveau _BIOS method
...53 ID6........\/._S 4790: 42 5f 50 43 49 30 47 46 58 30 44 44 30 36 68 a0 B_PCI0GFX0DD06h. 47a0: 23 93 7b 44 49 44 37 0b 00 0f 00 0b 00 04 86 5c #.{DID7........\ 47b0: 2f 04 5f 53 42 5f 50 43 49 30 47 46 58 30 44 44 /._SB_PCI0GFX0DD 47c0: 30 37 68 a0 23 93 7b 44 49 44 38 0b 00 0f 00 0b 07h.#.{DID8..... 47d0: 00 04 86 5c 2f 04 5f 53 42 5f 50 43 49 30 47 46 ...\/._SB_PCI0GF 47e0: 58 30 44 44 30 38 68 10 40 7d 5f 47 50 45 14 18 X0DD08h.@}_GPE.. 47f0: 5f 4c 30 42 00 86 5c 2f 03 5f 53 42 5f 50 43 49 _L0B..\/._SB_PCI 4800: 30 50 30 50 31 0a 02 14 40 1a 5f 4c 30 39 00 a0 0P0P1.....