Changeset 623 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/makefile
- Timestamp:
- Jun 15, 2022, 2:48:59 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/makefile
r622 r623 31 31 # MODULE_POWER_MANAGEMENT Power Management support # 32 32 # MODULE_WIN9X_CMOS_HACK Hack for Windows 9x compatibility # 33 # MODULE_MFM_COMPATIBILITY Restores BDA drive count for MFM controllers that expect to be the#34 # only hard drive controller on the system#33 # MODULE_MFM_COMPATIBILITY Restores BDA drive count for MFM/SCSI controllers that expect to be # 34 # the only hard drive controller in the system # 35 35 # # 36 36 # Not modules but these affect the assembly: # … … 39 39 # NO_ATAID_VALIDATION *** Excludes code that tries to ensure proper communication with drives # 40 40 # NO_ATAID_CORRECTION Excludes code that corrects illegal CHS values from some CF cards # 41 # USE_086 Applies WORD alignment padding for use with 8086/V30 CPUs only # 41 42 # USE_186 Use instructions supported by 80188/80186 and V20/V30 and later # 42 43 # USE_286 Use instructions supported by 286 and later (defines USE_UNDOC_INTEL)# 43 44 # USE_386 Use instructions supported by 386 and later (defines USE_286) # 44 45 # USE_AT Use features supported on AT and later systems (not available on XT) # 45 # USE_UNDOC_INTEL Optimizations for Intel CPU :s - do NOT use on NEC V20/V30/Sony CPU:s#46 # USE_NEC_V Optimizations for use with NEC V20/V30 processors only#46 # USE_UNDOC_INTEL Optimizations for Intel CPUs - do NOT use on NEC V20/V30/Sony CPUs # 47 # USE_NEC_V Optimizations for use with NEC V20/V30 CPUs only # 47 48 # CLD_NEEDED Only needed for compatibility with buggy software/BIOSes # 49 # EXTRA_LOOP_UNROLLING_SMALL Improves transfer speed on some CPU + IDE controller combinations # 50 # EXTRA_LOOP_UNROLLING_LARGE Same as above but faster and uses more ROM space # 48 51 # # 49 52 # ** AT Builds only (when USE_AT is defined) # … … 108 111 # Assembler preprocessor defines # 109 112 ################################## 110 DEFINES_COMMON = MODULE_STRINGS_COMPRESSED MODULE_HOTKEYS MODULE_8BIT_IDE MODULE_EBIOS MODULE_SERIAL MODULE_SERIAL_FLOPPY MODULE_POWER_MANAGEMENT NO_ATAID_VALIDATION CLD_NEEDED 111 DEFINES_COMMON_LARGE = MODULE_BOOT_MENU MODULE_8BIT_IDE_ADVANCED MODULE_COMPATIBLE_TABLES 113 DEFINES_COMMON = MODULE_STRINGS_COMPRESSED MODULE_HOTKEYS MODULE_8BIT_IDE MODULE_EBIOS MODULE_SERIAL MODULE_SERIAL_FLOPPY MODULE_POWER_MANAGEMENT NO_ATAID_VALIDATION CLD_NEEDED EXTRA_LOOP_UNROLLING_SMALL 114 DEFINES_COMMON_LARGE = MODULE_BOOT_MENU MODULE_8BIT_IDE_ADVANCED MODULE_COMPATIBLE_TABLES EXTRA_LOOP_UNROLLING_LARGE 112 115 113 116 DEFINES_XT = $(DEFINES_COMMON) ELIMINATE_CGA_SNOW MODULE_8BIT_IDE_ADVANCED
Note:
See TracChangeset
for help on using the changeset viewer.