search for: 08h

Displaying 20 results from an estimated 27 matches for "08h".

Did you mean: 08
2009 Jul 31
0
[LLVMdev] Win64 bugs
...9 is about the extra XMM stores; I thought the alignment was working, though... > Though the most problematic stuff is the lack of 'shadow zone' support > in Win64 ABI. Or maybe I haven't figured out how to turn this on. In > Win64 any function can treat 32 bytes of stack (RSP+08h..RSP+28h just > after the call instruction) as scratch data. VC++ compiler stores > arguments passed in registers there. In debug builds this doesn't get > optimized away. Wow, that's really strange... I'm pretty sure that simply isn't implemented. -Eli
2009 Jul 31
6
[LLVMdev] Win64 bugs
...lt in debug mode) randomly crashes on some simple hello-world-alike tests due to misalignment. Though the most problematic stuff is the lack of 'shadow zone' support in Win64 ABI. Or maybe I haven't figured out how to turn this on. In Win64 any function can treat 32 bytes of stack (RSP+08h..RSP+28h just after the call instruction) as scratch data. VC++ compiler stores arguments passed in registers there. In debug builds this doesn't get optimized away. Consider this C++ code: #include <stdio.h> int main () { for ( int i=0; i<5; i++ ) printf ( "%d\n", 0 );...
2008 Mar 25
3
Com32 api problem !
(sorry for my english if it is approximate !) I want to access harddisk from com32 api with PXELINUX. I try to use int 13h Extended Read Drive Parameters (48h), it doesn't works. Here is my code, I have an error 1 in AH return code. Int 13h Read Drive Parameters (08h) work well. ******************************************************************************************* struct params { unsigned short size,info; unsigned long cylinders,heads,sectors; unsigned long long int total; unsigned short bytes; } disk; void ExtDiskInfo(int n) { printf("Ext...
2004 Jul 19
3
Numbering Plan and Siemens EWSD
Hi all, We're trying to hook up our Asterisk config (Card: TE410P) with a Siemens EWSD switch. The link is ok on both ends (green), with no errors. The problem is when we try to make a call from our side (via call files), we get the pri/E1 error Ext: 1 Cause: Temporary failure (41), class = Network Congestion (2) Our Telecom partner (they checked with Siemens) mentioned that we need to
2009 Mar 22
1
[PATCH] [memdisk] Additional comments in memdisk.inc and postprocess.pl
...e have a class match here + ; 0x00 the sign bit for FD + ; 0x80 the sign bit for HD jz .our_drive ; If ZF=1, we have an exact match cmp dl,[cs:DriveNo] jb .nomatch ; Drive < Our drive @@ -115,13 +118,13 @@ Int13Start: pushf push bp mov bp,sp - cmp byte [cs:SavedAX+1],08h + cmp byte [cs:SavedAX+1],08h ; Get drive params function? je .norestoredl - cmp byte [cs:SavedAX+1],15h + cmp byte [cs:SavedAX+1],15h ; Get disk type function? jne .restoredl test byte [bp+4],80h ; Hard disk? jnz .norestoredl -.restoredl: +.restoredl: ; DL should have number of d...
2005 Sep 14
1
MEMDISK Presence API
Hello, How do I set up the registers to find out that MEMLINUX is installed? I know it is an int 13h / ah=08h call - but I cannot figure out how to specify the other registers... Also, I need to find a way to be able to: unhook int 13h and int 15h and put them back to the BIOS vectors, and yes, I know some DOSses rehook int 13 - but it can be done.. I need to be able to boot a CD, load the ElTorito driv...
2009 Jul 31
2
[LLVMdev] Win64 bugs
...Peter Shugalev<peter at shugalev.com> > wrote: >> Though the most problematic stuff is the lack of 'shadow zone' >> support >> in Win64 ABI. Or maybe I haven't figured out how to turn this on. In >> Win64 any function can treat 32 bytes of stack (RSP+08h..RSP+28h just >> after the call instruction) as scratch data. VC++ compiler stores >> arguments passed in registers there. In debug builds this doesn't get >> optimized away. > > Wow, that's really strange... I'm pretty sure that simply isn't > implement...
2004 Dec 09
1
EDD error RE: Re: SYSLINUX 2.12-pre7 released
...9;A' for localboot 0x80 as defined in my isolinux.cfg file) UDMA2 author mailed this: ------------ and avoids addressing over 20 bits. Re: the "Int 13h" function codes used by UDMA2, they are (A) 41h to see if an EDD BIOS is present, 48h to request EDD parameters for every disk and 08h to request CHS values for every disk. All are "basic" functions that any (good) EDD BIOS should support. If, in Bernd ---------------------------------------------------------------- Op deze e-mail zijn de volgende voorwaarden van toepassing: http://www.fontys.nl/disclaimer The ab...
2009 Aug 10
2
PROMPT=0/ESCAPE key SERIAL fun
...ny ideas how to fix this, this would be *really* handy :) Cheers [1] I felt escape was appropriate as it is completely inappropriate when sent from the keyboard. The downside is you get a looping in the reloading of the 'default-menu' until you stop holding it down (maybe backspace, 08h, is more suitable?) but as the admin menu is rarely called upon and the issue is just cosmetic I'm not really bothered -- Alexander Clouter .sigmonster says: What soon grows old? Gratitude. -- Aristotle
2006 Mar 10
2
unload memdisk+FreeDOS => local boot
Sensei H. Peter Anvin, I have successfully modified/enhanced memdisk so that one can chainload a local operating system after running diskless FreeDOS. I would like your advice regarding the appropriate interface for invoking this functionality. In addition, I would like to know what steps to take so that you feel comfortable considering including this in the standard syslinux distribution.
2004 Feb 27
14
BIOS disk geometry and Linux 2.6
...I can confirm that if I create a partition under Linux, format it, and run the Windows installer under dosemu, Windows is not able to boot. If I create the partition table under real DOS first, everything works fine. Now for the on-topic part of this message. What I want to do is invoke INT13/AH=08H in real mode to obtain the BIOS's idea of the geometry of disk 0x80, then boot Linux and pass that information in as a kernel command-line parameter. My question is, can I do this with COMBOOT? If not, does anybody have any other ideas? This is a real show-stopper for me... Thanks! - Pat
2009 Jul 31
0
[LLVMdev] Win64 bugs
...ter at shugalev.com> >> wrote: >>> Though the most problematic stuff is the lack of 'shadow zone' >>> support >>> in Win64 ABI. Or maybe I haven't figured out how to turn this on. In >>> Win64 any function can treat 32 bytes of stack (RSP+08h..RSP+28h just >>> after the call instruction) as scratch data. VC++ compiler stores >>> arguments passed in registers there. In debug builds this doesn't get >>> optimized away. >> Wow, that's really strange... I'm pretty sure that simply isn't &gt...
2010 Dec 21
2
[PATCH][git-pull] core/diskstart.inc
git://git.zytor.com/users/genec/syslinux.git Branch core-diskstart-boot-for-hpa. I found that INT 13h AH 08h in BOCHS used ES, DI, at least when using a partitionless HDD, causing "Boot error" from the magic check as it was loaded to the wrong location. HPA suggested wrapping INT 13h with the push/pop for ES's safety. This then lead to checking over for all int 13h calls in diskstart.inc t...
2001 Aug 27
3
Netscape
Is it possible to install and run Netscape whitout having access to a native windows. -- Best regard, Svend Bjerrum Jensen http://www.sbj.esenet.dk
2009 Nov 20
0
[PATCH] memdisk: Use boot_lba logic for booting an offset within the di
...truct geometry { uint32_t sectors; /* Sector count */ uint32_t c, h, s; /* C/H/S geometry */ uint32_t offset; /* Byte offset for disk */ + uint32_t boot_lba; /* LBA of bootstrap code */ uint8_t type; /* Type byte for INT 13h AH=08h */ uint8_t driveno; /* Drive no */ uint16_t sector_size; /* Sector size in bytes (512 vs. 2048) */ @@ -451,6 +452,9 @@ static const struct geometry *get_disk_image_geometry(uint32_t where, /* If we have an emulation mode, set the offset to the image */ if (...
2011 Feb 18
1
[PATCH] core: Allow pasting from a VMware host by typing Ctrl-P
...diff --git a/core/ui.inc b/core/ui.inc index 2d44447..0e82779 100644 --- a/core/ui.inc +++ b/core/ui.inc @@ -125,6 +125,8 @@ not_ascii: je print_version cmp al,'X' & 1Fh ; <Ctrl-X> je force_text_mode + cmp al,'P' & 1Fh ; <Ctrl-P> + je paste cmp al,08h ; Backspace jne get_char backspace: cmp di,command_line ; Make sure there is anything @@ -143,6 +145,10 @@ force_text_mode: call vgaclearmode jmp enter_command +paste: + call vmware_paste + jmp get_char + set_func_flag: mov byte [FuncFlag],1 jmp short get_char_2 @@ -568,6 +5...
2010 Oct 22
0
[LLVMdev] Fw: run into a problem with a version of GCC not listed here
...ownloads all needed sources and generates a necessary settigs file in the <INSTALL>/i686-pc-linux-gnu_gcc-4.5.1/settings.sh directory. the script is attached. "maybe it could use someone" best regards: jurij -----Ursprüngliche Nachricht----- Datum: Tue, 19 Oct 2010 10:08h Von: Török Edwin <edwintorok at gmail.com> An: "017667932270" <yuri.kostasenko at o2online.de> Betreff: Re: [LLVMdev] run into a problem with a version of GCC not listed here On Mon, 18 Oct 2010 23:11:22 +0200 (CEST) "017667932270" <yuri.kostasenko at o2online.d...
2010 Jan 03
1
Setting CDROM parms
...deleine ~]$ growisofs -dvd-compat -Z /dev/hdb=/home/rj/KNOPPIX_V6.2DVD-2009-11-18-EN.iso Executing 'builtin_dd if=/home/rj/KNOPPIX_V6.2DVD-2009-11-18-EN.iso of=/dev/hdb obs=32k seek= 0' /dev/hdb: "Current Write Speed" is 16.4x1352KBps. :-[ WRITE at LBA=30h failed with SK=4h/ASC=08h/ACQ=03h]: Input/output error :-( write failed: Input/output error /dev/hdb: flushing cache /dev/hdb: updating RMA /dev/hdb: closing disc [rj at madeleine ~]$
2004 Aug 03
3
CF boot stops after version and date output
SYSLINUX 2.10 2004-06-18 That is all I get when I boot my system off a CompactFlash card in an IDE adapter, no matter how long I wait. What debugging steps are recommended? I'm willing to get down and dirty with assembler, and I'd appreciate suggestions of what to suspect and where to start. Details: This is a Crucial 128MB CompactFlash card in a non-hot-swap CF-IDE adapter which
2009 Jul 31
0
[LLVMdev] Win64 bugs
...lt in debug mode) randomly crashes on some simple hello-world-alike tests due to misalignment. Though the most problematic stuff is the lack of 'shadow zone' support in Win64 ABI. Or maybe I haven't figured out how to turn this on. In Win64 any function can treat 32 bytes of stack (RSP+08h..RSP+28h just after the call instruction) as scratch data. VC++ compiler stores arguments passed in registers there. In debug builds this doesn't get optimized away. Consider this C++ code: #include <stdio.h> int main () { for ( int i=0; i<5; i++ ) printf ( "%d\n", 0 );...