Changeset 176 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc/RomVars.inc


Ignore:
Timestamp:
Oct 22, 2011, 9:20:14 PM (13 years ago)
Author:
gregli@…
google:author:
gregli@hotmail.com
Message:

Made a module around the EBIOS code, so that it can be turned off to make room for serial code, still enabled by default in the Makefile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/XTIDE_Universal_BIOS/Inc/RomVars.inc

    r175 r176  
    2828    .ideVars3       resb    IDEVARS_size
    2929
     30%ifdef MODULE_SERIAL
    3031    .ideVarsSerialAuto  resb    IDEVARS_size
     32%endif
    3133endstruc
    3234
     
    3436FLG_ROMVARS_FULLMODE    EQU (1<<0)  ; Full operating mode (steals base RAM, supports EBIOS etc.)
    3537FLG_ROMVARS_DRVXLAT     EQU (1<<2)  ; Enable drive number translation
     38
    3639%ifdef MODULE_SERIAL
    3740FLG_ROMVARS_MODULE_SERIAL   EQU (1<<3)
    3841%else
    3942FLG_ROMVARS_MODULE_SERIAL   EQU 0
     43%endif
     44
     45%ifdef MODULE_EBIOS
     46FLG_ROMVARS_MODULE_EBIOS    EQU (1<<4)
     47%else
     48FLG_ROMVARS_MODULE_EBIOS    EQU 0
    4049%endif
    4150
Note: See TracChangeset for help on using the changeset viewer.