Changeset 41084 in vbox
- Timestamp:
- Apr 27, 2012 1:05:09 PM (13 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Makefile.kmk
r40993 r41084 28 28 endif 29 29 if !defined(VBOX_ONLY_EXTPACKS) # Goes on almost to the end of the file. 30 include $(PATH_SUB_CURRENT)/PC/BIOS/Makefile.kmk 30 ifdef VBOX_WITH_NEW_BIOS 31 include $(PATH_SUB_CURRENT)/PC/BIOS-new/Makefile.kmk 32 else 33 include $(PATH_SUB_CURRENT)/PC/BIOS/Makefile.kmk 34 endif 31 35 include $(PATH_SUB_CURRENT)/Graphics/BIOS/Makefile.kmk 32 36 ifdef VBOX_WITH_EFI -
trunk/src/VBox/Devices/PC/BIOS-new/orgs.asm
r40723 r41084 131 131 132 132 ;; Additional publics for easier disassembly and debugging 133 DEBUG equ 1 133 ifndef DEBUG 134 DEBUG equ 1 135 endif 134 136 ifdef DEBUG 135 137 … … 669 671 endif 670 672 pop ax 671 ret 673 ret 672 674 rom_checksum endp 673 675 … … 1064 1066 1065 1067 detect_parport endp 1066 1068 1067 1069 ; setial port detection: port in dx, index in bx, timeout in cl 1068 1070 detect_serial proc near … … 1148 1150 1149 1151 ;; TODO: See above. Dumb *and* redundant! 1150 mov al, 0 1152 mov al, 0 1151 1153 mov ds:[490h], al ; drv0 media state 1152 1154 mov ds:[491h], al ; drv1 media state … … 1308 1310 pop ds 1309 1311 iret 1310 1312 1311 1313 1312 1314 … … 1613 1615 pop ax 1614 1616 iret 1615 1616 int76_handler endp 1617 1618 int76_handler endp 1617 1619 1618 1620 ;; --------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.