Changeset 623 in xtideuniversalbios for trunk/Assembly_Library/Inc
- Timestamp:
- Jun 15, 2022, 2:48:59 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Inc/Emulate.inc
r605 r623 60 60 %endif 61 61 %else ; XT 62 JUMP_ALIGN EQU 1 ; 2 is optimal for 8086 and NEC V30 CPUs but it's not worth the ROM space for most XT machines with 8088 or NEC V20 CPUs. 63 WORD_ALIGN EQU 2 ; The same applies here but the cost of ROM space is negligible. 62 %ifndef USE_086 ; 8088/V20 CPUs 63 JUMP_ALIGN EQU 1 ; 2 is optimal for 8086 and NEC V30 CPUs but it's not worth the ROM space for most XT machines with 8088 or NEC V20 CPUs. 64 WORD_ALIGN EQU 2 ; The same applies here but the cost of ROM space is negligible. 65 %else ; 8086/V30 CPUs 66 JUMP_ALIGN EQU 2 67 WORD_ALIGN EQU 2 68 %endif 64 69 %endif 65 70
Note:
See TracChangeset
for help on using the changeset viewer.