search for: 80h

Displaying 20 results from an estimated 38 matches for "80h".

Did you mean: 80
2015 Feb 13
2
[LLVMdev] trunk's optimizer generates slower code than 3.5
...; _main+118 j add [rsp+48h+var_3C], 1 jmp loc_100000DE0 _main endp ``` MSVC 10.0's result: ``` _main proc near ; CODE XREF: ___tmainCRTStartup+106 p var_80 = dword ptr -80h var_7C = dword ptr -7Ch var_78 = dword ptr -78h var_74 = dword ptr -74h var_70 = dword ptr -70h var_6C = dword ptr -6Ch var_68 = dword ptr -68h var_64 = dword ptr -64h var_60 = dword ptr -60h var_5C = dword ptr -5Ch ar...
2015 Feb 14
2
[LLVMdev] trunk's optimizer generates slower code than 3.5
...1 >> jmp loc_100000DE0 >> _main endp >> ``` >> >> MSVC 10.0's result: >> >> ``` >> >> _main proc near ; CODE XREF: ___tmainCRTStartup+106 p >> >> var_80 = dword ptr -80h >> var_7C = dword ptr -7Ch >> var_78 = dword ptr -78h >> var_74 = dword ptr -74h >> var_70 = dword ptr -70h >> var_6C = dword ptr -6Ch >> var_68 = dword ptr -68h >> var_64 = dword ptr -64h >&...
2015 Feb 14
2
[LLVMdev] trunk's optimizer generates slower code than 3.5
...endp >>>> ``` >>>> >>>> MSVC 10.0's result: >>>> >>>> ``` >>>> >>>> _main proc near ; CODE XREF: ___tmainCRTStartup+106 p >>>> >>>> var_80 = dword ptr -80h >>>> var_7C = dword ptr -7Ch >>>> var_78 = dword ptr -78h >>>> var_74 = dword ptr -74h >>>> var_70 = dword ptr -70h >>>> var_6C = dword ptr -6Ch >>>> var_68 = dword ptr -68h...
2011 May 17
2
[LLVMdev] How are system calls made?
How do you do this in LLVM? open: push dword mode push dword flags push dword path mov eax, 5 push eax ; Or any other dword int 80h add esp, byte 16 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110516/a61fe83b/attachment.html>
2008 Oct 22
3
Question about .bs and .bss style bootsectors.
...oaded natively as .bs (and dos also as .bss). PS. By the way - there's another "trick" to make dos (at least microsoft versions) to boot from another harddisk - if you set actual physical drive number in its bootsector and as active flag on the respective disk (e.g. 81h instead of 80h). This way there's no need for drive swapping code.
2019 Apr 04
2
Question of syslinux chainloading
So when you boot from only your hard drive attached, it is the primary and only drive. It loads the master boot record that load the NT Loader boot code that is then configured to load the operating system from the primary partition on the primary drive. When you boot from the USB drive, you make it the Primary drive. You then tell it to load the MBR fromt the secondary drive. The secondary
2002 Jul 11
1
help with porting patch from 1.62 to 1.75
...NT13 segment + mov [es:real_int13+2],ax + + mov si,swap_int13 ; copy our INT13 handler + xor di,di + mov cx,swap_int13_len + repz movsb + + xor ax,ax ; install our INT 13 handler + mov [4ch],ax ; offset + mov [4eh],es ; segment + + pop es + + call crlf + + mov byte [bsDriveNumber],80h + + jmp into_bootsec + +swap_int13: + ; swap drives + cmp dl,80h + jb dont_swap + cmp dl,81h + ja dont_swap + xor dl,1h +dont_swap: + jmp far [cs:real_int13] +swap_int13_len equ $-swap_int13 + +real_int13 equ 256*3 + ; ----------------------------------------------------------------------...
2005 Nov 24
1
boot with more scsi card
hi, we've got a server with a 8 port 3ware card and 2 ide system disks. now we'd like to replace the ide disks with scsi disks or sata disks (these also recognized as scsi in the kernel). but we can't boot from it. the problem are twofold. first in the normal case the first scsi host scsi0 id the 3ware card, but grub only see the first 8 disk so if the system disk are sdi and sdj the
2011 May 17
0
[LLVMdev] How are system calls made?
On 5/16/11 10:30 PM, Hans Stimer wrote: > How do you do this in LLVM? > > open: > push dword mode > push dword flags > push dword path > mov eax, 5 > push eax ; Or any other dword > int 80h > add esp, byte 16 Same as in C: either with inline assembly, or by calling syscall(2). Chip
2002 Jul 23
1
Bug in isolinux?
...n PCI bus 00 dev 48 hda: TOSHIBA DVD-ROM SD-M1502, ATAPI CD/DVD-ROM drive hdc: SAMSUNG CD-R/RW SW-216B Q001 20010913, ATAPI CD/DVD-ROM drive hde: ST380021A, ATA DISK drive CMD649 is an external IDE controller, that has hard drive connected to it (it says something about installing drive ST38... at 80h.) The problem does not exist when I remove CMD649 from my box. Can you help? wolf -- Bartek . - Zasada superpozycji... nie, to nie z kamasutry. Taudul : (temp. sig):....................................... magiczne teksty nauczycieli: w o l f <at> p l d , o r g _ p l...
2017 Mar 22
3
"isolinux.bin missing or corrupt" when booting USB flash drive in old PC
...ently my suspicion is that the isohdpfx.S code simply mishandles the two conversion factors which it correctly got from BIOS call INT 13H AH 8. > Boot System ID : First : Last : Relative : Number of: > Flag :Cyl Head Sec:Cyl Head Sec: Sector : Sectors : > 80h 00h : 0 0 1 : 646 63 32 : 0: 1325056: > 00h EFh ?? :1023 254 63 :1023 254 63 : 8524: 608: The last sector 1325055 and its C/H/S (646, 63, 32) address tell that the partition table was made under the assumption H/C= 64 and S/H= 32. That's what hpa...
2003 Aug 27
2
MEMDISK without floppy drive
...4x) without checking for presence (ah=41). memdisk doesn't implement those (#2). Workaround for #1: only hand reset calls down to the original handler if it is meant for hard disks, too (high bit in dl set). i added the following lines to the Reset code: Reset: TRACER 'R' test dl,80h jnz .passon xor ax,ax ret .passon: [ original Reset code here ] Workaround for #2: I implemented the int13 ah=41,42,43,44,47 and 48 functions (not well tested, though!). If someone is interested in those, i could post the patch. cheers, robert
2010 Mar 09
3
Enhanced MDISKCHK.COM and MEMDISK patches
Good day to all, Gert Hulselmans requested a feature for MDISKCHK.COM that would function roughly like GETARGS.COM[1] by Murali Krishnan Ganapathy: DOS SET command output for MEMDISK kernel arguments passed by previous boot-loaders. He also needed to support the case for MEMDISK-in-a-MEMDISK type situations, where all MEMDISK kernel arguments could be gathered together and output as a list
2017 Mar 22
4
"isolinux.bin missing or corrupt" when booting USB flash drive in old PC
Hi, funny or enlightening observation: With my qemu-system-i386 it would work if the detected Heads/Cylinder and Sectors/Head factors would change positions ! The effective read operation seems to use H/C = 32 , S/H = 63. The correct LBA would be addressed by H/C = 63 , S/H = 32. -------------------------------------------------------------------------- Reasoning: I have transplanted the
2005 Jul 29
1
sda of CentOS 4 and hda Windows dual boot possible?
greetings, since i have a test server in front of me and i have never tried it i request your assistance please. ive always been a fdisk and lilo person i have a fresh CentOS 4 "test" install on a WD120 sata /dev/sda /dev/sda1 / /dev/sda2 /boot /dev/sda3 swap and it just so happens i have a old test 17Gig Maxtor PATA with a fresh Win98 on it from helping my father migrate to a newer
2002 Nov 01
3
Problems booting with SCSI CD (fwd)
...messages and what leads up to them: -------------------------begin------------------------- Adaptec AHA-2940 Ultra/Ultra w BIOS v.1.23 (c) 1996 adaptec, Inc. all rights Reserved. Press <Ctrl> <A> for SCSI Select (TM) Utility! * SCSI ID: LUN NUMBER #:# 0:0 - IBM-PCCO DGHS - Drive C: (80h) SCSI ID: LUN NUMBER #:# 5:0 - MATSHITA CD_ROM CR-506 (next line in box) A BOOTABLE CD-ROM IS DETECTED IN YOUR CD-ROM DRIVE... The boot sections on your bootable CD-ROM are: 0. DEFAULT ENTRY * => "Plug and Play" peripheral -- SCSI ID auto-assigned BIOS installed successfully! I...
2013 Jul 19
0
[LLVMdev] llvm.x86.sse2.sqrt.pd not using sqrtpd, calling a function that modifies ECX
...ebp,esp 002E00D3 push ebx 002E00D4 push edi 002E00D5 push esi 002E00D6 and esp,0FFFFFFF0h 002E00DC sub esp,110h 002E00E2 mov eax,dword ptr [ebp+8] 002E00E5 movddup xmm0,mmword ptr [eax+10h] 002E00EA movapd xmmword ptr [esp+80h],xmm0 002E00F3 movddup xmm0,mmword ptr [eax+8] 002E00F8 movapd xmmword ptr [esp+70h],xmm0 002E00FE movddup xmm0,mmword ptr [eax] 002E0102 movapd xmmword ptr [esp+60h],xmm0 002E0108 xorpd xmm0,xmm0 002E010C movapd xmmword ptr [esp+0C0h],xmm0 002E0115 xorpd...
2011 May 17
1
[LLVMdev] How are system calls made?
...; On 5/16/11 10:30 PM, Hans Stimer wrote: > > How do you do this in LLVM? > > > > open: > > push dword mode > > push dword flags > > push dword path > > mov eax, 5 > > push eax ; Or any other dword > > int 80h > > add esp, byte 16 > Same as in C: either with inline assembly, or by calling syscall(2). > > Chip > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/ma...
2017 Mar 22
0
"isolinux.bin missing or corrupt" when booting USB flash drive in old PC
...H/C = 63 , S/H = 32. > The original MBR included in debian-8.7.1-i386-xfce-CD-1.iso was delivered with the following values (use a monospace font): Boot System ID : First : Last : Relative : Number of: Flag :Cyl Head Sec:Cyl Head Sec: Sector : Sectors : 80h 00h : 0 0 1 : 646 63 32 : 0: 1325056: 00h EFh ?? :1023 254 63 :1023 254 63 : 8524: 608: 00h 00h : 0 0 0 : 0 0 0 : 0: 0: 00h 00h : 0 0 0 : 0 0 0 : 0: 0: If a specific BIOS' CHS...
2017 Mar 22
0
"isolinux.bin missing or corrupt" when booting USB flash drive in old PC
...dpfx.S code simply mishandles > the two conversion factors which it correctly got from BIOS call > INT 13H AH 8. > > > > Boot System ID : First : Last : Relative : Number of: > > Flag :Cyl Head Sec:Cyl Head Sec: Sector : Sectors : > > 80h 00h : 0 0 1 : 646 63 32 : 0: 1325056: > > 00h EFh ?? :1023 254 63 :1023 254 63 : 8524: 608: > > The last sector 1325055 and its C/H/S (646, 63, 32) address tell that the > partition table was made under the assumption H/C= 64 and S/H= 32....