Changeset 69289 in vbox
- Timestamp:
- Oct 25, 2017 11:34:31 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/BiosCommonCode/commondefs.inc
r69120 r69289 20 20 SET_DEFAULT_CPU macro 21 21 if VBOX_BIOS_CPU eq 8086 22 22 .8086 23 23 elseif VBOX_BIOS_CPU eq 80186 24 24 .186 25 25 elseif VBOX_BIOS_CPU eq 80286 26 26 .286 27 27 elseif VBOX_BIOS_CPU eq 80386 28 28 .386 29 29 else 30 30 .errnz 1, Unsupported target CPU value: VBOX_BIOS_CPU 31 31 .386 32 32 endif 33 33 endm … … 37 37 SET_DEFAULT_CPU_286 macro 38 38 if VBOX_BIOS_CPU eq 8086 39 39 .8086 40 40 elseif VBOX_BIOS_CPU eq 80186 41 42 else 43 41 .186 42 else 43 .286 44 44 endif 45 45 endm … … 232 232 public biosorg_check_at_&addr 233 233 biosorg_check_at_&addr: 234 234 endm 235 235 236 236 ;; Adds a special label that will have its address checked after linking. 237 237 BIOSORG_CHECK_BEFORE macro addr 238 public 238 public biosorg_check_before_or_at_&addr 239 239 biosorg_check_before_or_at_&addr: 240 endm 241 242 240 endm 241
Note:
See TracChangeset
for help on using the changeset viewer.