Home
last modified time | relevance | path

Searched refs:RegsOut (Results 1 – 6 of 6) sorted by relevance

/reactos/boot/freeldr/freeldr/arch/i386/pc/
H A Dpcdisk.c182 REGS RegsIn, RegsOut; in DiskResetController() local
222 REGS RegsIn, RegsOut; in DiskInt13ExtensionsSupported() local
300 REGS RegsIn, RegsOut; in DiskGetExtendedDriveParameters() local
377 REGS RegsIn, RegsOut; in InitDriveGeometry() local
442 Cylinders += RegsOut.b.ch; in InitDriveGeometry()
569 REGS RegsIn, RegsOut; in PcDiskReadLogicalSectorsLBA() local
610 if (INT386_SUCCESS(RegsOut) || (RegsOut.b.ah == 0x11)) in PcDiskReadLogicalSectorsLBA()
620 RegsOut.b.ah, DiskGetErrorCodeString(RegsOut.b.ah), in PcDiskReadLogicalSectorsLBA()
639 REGS RegsIn, RegsOut; in PcDiskReadLogicalSectorsCHS() local
711 if (INT386_SUCCESS(RegsOut) || (RegsOut.b.ah == 0x11)) in PcDiskReadLogicalSectorsCHS()
[all …]
H A Dpcmem.c56 REGS RegsOut; in GetExtendedMemoryConfiguration() local
75 Int386(0x15, &RegsIn, &RegsOut); in GetExtendedMemoryConfiguration()
78 TRACE("AX = 0x%x\n", RegsOut.w.ax); in GetExtendedMemoryConfiguration()
79 TRACE("BX = 0x%x\n", RegsOut.w.bx); in GetExtendedMemoryConfiguration()
80 TRACE("CX = 0x%x\n", RegsOut.w.cx); in GetExtendedMemoryConfiguration()
81 TRACE("DX = 0x%x\n", RegsOut.w.dx); in GetExtendedMemoryConfiguration()
84 if (INT386_SUCCESS(RegsOut)) in GetExtendedMemoryConfiguration()
87 if (RegsOut.w.ax == 0) in GetExtendedMemoryConfiguration()
117 Int386(0x15, &RegsIn, &RegsOut); in GetExtendedMemoryConfiguration()
120 TRACE("AX = 0x%x\n", RegsOut.w.ax); in GetExtendedMemoryConfiguration()
[all …]
/reactos/boot/freeldr/freeldr/arch/i386/
H A Dhwapm.c16 REGS RegsIn, RegsOut; in FindApmBios() local
22 Int386(0x1F, &RegsIn, &RegsOut); in FindApmBios()
26 Int386(0x15, &RegsIn, &RegsOut); in FindApmBios()
28 if (INT386_SUCCESS(RegsOut) && RegsOut.w.bx == 'PM') in FindApmBios()
31 TRACE("AH: %x\n", RegsOut.b.ah); in FindApmBios()
32 TRACE("AL: %x\n", RegsOut.b.al); in FindApmBios()
33 TRACE("BH: %x\n", RegsOut.b.bh); in FindApmBios()
34 TRACE("BL: %x\n", RegsOut.b.bl); in FindApmBios()
35 TRACE("CX: %x\n", RegsOut.w.cx); in FindApmBios()
H A Dhwpci.c83 REGS RegsOut; in PcFindPciBios() local
88 Int386(0x1A, &RegsIn, &RegsOut); in PcFindPciBios()
90 if (INT386_SUCCESS(RegsOut) && in PcFindPciBios()
91 (RegsOut.d.edx == ' ICP') && in PcFindPciBios()
92 (RegsOut.b.ah == 0)) in PcFindPciBios()
96 TRACE("AL: %x\n", RegsOut.b.al); in PcFindPciBios()
97 TRACE("BH: %x\n", RegsOut.b.bh); in PcFindPciBios()
98 TRACE("BL: %x\n", RegsOut.b.bl); in PcFindPciBios()
99 TRACE("CL: %x\n", RegsOut.b.cl); in PcFindPciBios()
101 BusData->NoBuses = RegsOut.b.cl + 1; in PcFindPciBios()
[all …]
/reactos/boot/freeldr/freeldr/arch/i386/pc98/
H A Dpc98disk.c185 REGS RegsIn, RegsOut; in Pc98DiskReadLogicalSectorsLBA() local
224 if (INT386_SUCCESS(RegsOut) || (RegsOut.b.ah == 0x08)) in Pc98DiskReadLogicalSectorsLBA()
235 RegsOut.b.ah, DiskGetErrorCodeString(RegsOut.b.ah), in Pc98DiskReadLogicalSectorsLBA()
253 REGS RegsIn, RegsOut; in Pc98DiskReadLogicalSectorsCHS() local
376 RegsOut.b.ah, DiskGetErrorCodeString(RegsOut.b.ah), in Pc98DiskReadLogicalSectorsCHS()
394 REGS RegsIn, RegsOut; in InitScsiDrive() local
420 if (!INT386_SUCCESS(RegsOut) || RegsOut.w.cx == 0) in InitScsiDrive()
540 REGS RegsIn, RegsOut; in InitHardDrive() local
569 if (!INT386_SUCCESS(RegsOut) || RegsOut.w.cx == 0) in InitHardDrive()
609 REGS RegsIn, RegsOut; in InitFloppyDrive() local
[all …]
H A Dmachpc98.c105 REGS RegsIn, RegsOut; in Pc98ArchTest() local
111 Int386(0x1A, &RegsIn, &RegsOut); in Pc98ArchTest()
113 return RegsOut.w.ax != 0x1000; in Pc98ArchTest()