Changeset 596 in xtideuniversalbios for trunk/Assembly_Library/Inc/Emulate.inc


Ignore:
Timestamp:
Jul 10, 2018, 1:20:11 AM (6 years ago)
Author:
krille_n_
Message:

Changes:

  • Made changes to HotkeyBar.asm to give the Boot Menu and Hotkey Bar a more consistent look. It will probably seem a bit strange at first to people used to the classic theme.
  • Added the missing parts of USE_NEC_V that should have been committed with the rest in r593.
  • Removed DEFINES_ALL_FEATURES from the BIOS makefile. It didn't work anymore and never really made sense anyway. Added all the official builds to 'make unused' instead which actually uncovered some unused code in the Tiny build.
  • XTIDECFG will no longer load color themes from unrecognized versions of the BIOS.
  • Other fixes in comments and some minor optimizations.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Inc/Emulate.inc

    r592 r596  
    1818;%define USE_386                ; Define to use 386 instructions
    1919;%define USE_AT                 ; Define for AT class machine
     20
     21%ifdef USE_NEC_V                ; This will run on NEC V20/V30 processors only
     22    %define USE_186             ; Define to use 18x/V20/V30 instructions
     23    %ifdef USE_UNDOC_INTEL OR USE_286 OR USE_386
     24        %fatal "Conflicting processor define used together with USE_NEC_V!"
     25    %endif
     26%endif
    2027
    2128%ifdef USE_386
     
    8794    %endif
    8895%endmacro
     96
     97
     98%ifdef USE_NEC_V
     99    %include "NEC_V.inc"
     100%endif
    89101
    90102
Note: See TracChangeset for help on using the changeset viewer.