Changeset 27456 in vbox for trunk/src/VBox
- Timestamp:
- Mar 17, 2010 4:18:43 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/rombios.c
r27177 r27456 5404 5404 5405 5405 void 5406 int13_harddisk(EH AX, DS, ES, DI, SI, BP, ELDX, BX, DX, CX, AX, IP, CS, FLAGS)5407 Bit16u EH AX, DS, ES, DI, SI, BP, ELDX, BX, DX, CX, AX, IP, CS, FLAGS;5406 int13_harddisk(EHBX, EHAX, DS, ES, DI, SI, BP, ELDX, BX, DX, CX, AX, IP, CS, FLAGS) 5407 Bit16u EHBX, EHAX, DS, ES, DI, SI, BP, ELDX, BX, DX, CX, AX, IP, CS, FLAGS; 5408 5408 { 5409 5409 Bit32u lba; … … 6648 6648 6649 6649 void 6650 int13_harddisk(EH AX, DS, ES, DI, SI, BP, ELDX, BX, DX, CX, AX, IP, CS, FLAGS)6651 Bit16u EH AX, DS, ES, DI, SI, BP, ELDX, BX, DX, CX, AX, IP, CS, FLAGS;6650 int13_harddisk(EHBX, EHAX, DS, ES, DI, SI, BP, ELDX, BX, DX, CX, AX, IP, CS, FLAGS) 6651 Bit16u EHBX, EHAX, DS, ES, DI, SI, BP, ELDX, BX, DX, CX, AX, IP, CS, FLAGS; 6652 6652 { 6653 6653 Bit8u drive, num_sectors, sector, head, status, mod; … … 9091 9091 9092 9092 int13_disk: 9093 ;; int13_harddisk modifies high word of EAX 9093 ;; int13_harddisk modifies high word of EAX and EBX 9094 9094 shr eax, #16 9095 9095 push ax 9096 shr ebx, #16 9097 push bx 9096 9098 call _int13_harddisk 9099 pop bx 9100 shl ebx, #16 9097 9101 pop ax 9098 9102 shl eax, #16
Note:
See TracChangeset
for help on using the changeset viewer.