Changeset 71424 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Mar 21, 2018 11:26:28 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 121391
- Location:
- trunk/src/VBox/Devices/PC/BIOS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/ata.c
r71423 r71424 552 552 fdpt = ebda_seg :> &EbdaData->fdpt1; 553 553 554 fdpt = MK_FP(0xE200, 0xf00);555 fdpt += device;556 557 554 /* Set the INT 41h or 46h pointer. */ 558 555 int_vec = MK_FP(0, (0x41 + device * 5) * sizeof(void __far *)); … … 563 560 * isn't worth the effort of converting from AMI to Award CMOS 564 561 * format. Just do it here. */ 565 _fmemset(fdpt, 0, sizeof(*fdpt));566 562 fdpt->lcyl = lgeo.cylinders; 567 563 fdpt->lhead = lgeo.heads; -
trunk/src/VBox/Devices/PC/BIOS/makefile
r71423 r71424 19 19 CFLAGS = -q -0 -wx -zu -s -oas -d1+ -ms 20 20 CFLAGS32 = -q -wx -zu -s -oas -d1+ -ms -nt=BIOS32 -nd=BIOS32 21 # -oat seems to prevent ENTER/LEAVE generation22 #CFLAGS32 = -q -wx -zu -s -oat -d1+ -ms -nt=BIOS32 -nd=BIOS3223 21 24 22 DEFS = -DVBOX -DVBOX_LANBOOT_SEG=0xE200 -DVBOX_VERSION_STRING=$(Q)0.9$(Q) & … … 55 53 clname DATA segaddr=0xF000 segment _DATA & 56 54 clname CODE & 57 segment _TEXT segaddr=0xF000 offset=0x1 C00 &55 segment _TEXT segaddr=0xF000 offset=0x1600 & 58 56 segment BIOS32 segaddr=0xF000 offset=0xDB00 & 59 57 segment BIOSSEG segaddr=0xF000 offset=0xE000 &
Note:
See TracChangeset
for help on using the changeset viewer.