source: xtideuniversalbios/trunk/XTIDE_Universal_BIOS/Inc/ModuleDependency.inc@ 491

Last change on this file since 491 was 491, checked in by krille_n_@…, 12 years ago

Changes:

  • Added a new define (USE_UNDOC_INTEL) that enables optimizations possible by using undocumented instructions available on all Intel processors and truly compatible clones. AFAIK the only exceptions are the NEC V-series and the Sony CXQ70108 processors so this option should be safe for use on the AT builds.
  • Building BIOSDRVS or the BIOS without MODULE_STRINGS_COMPRESSED would fail due to the recent code exclusions so I changed them a bit. Also fixed the mistaken change to Main.asm
  • Changed the Tandy specific info in Configuration_FullMode.txt so it matches the info in the Wiki.
  • Optimizations and fixes in general.
File size: 3.3 KB
Line 
1; Project name : XTIDE Universal BIOS
2; Description : Dependencies for optional modules.
3
4;
5; XTIDE Universal BIOS and Associated Tools
6; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team.
7;
8; This program is free software; you can redistribute it and/or modify
9; it under the terms of the GNU General Public License as published by
10; the Free Software Foundation; either version 2 of the License, or
11; (at your option) any later version.
12;
13; This program is distributed in the hope that it will be useful,
14; but WITHOUT ANY WARRANTY; without even the implied warranty of
15; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16; GNU General Public License for more details.
17; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
18;
19
20; Boot Menu requires Hotkey support
21%ifdef MODULE_BOOT_MENU
22 %ifndef MODULE_HOTKEYS
23 %define MODULE_HOTKEYS
24 %endif
25%endif
26
27%ifdef MODULE_SERIAL_FLOPPY
28 %ifndef MODULE_SERIAL
29 %define MODULE_SERIAL
30 %endif
31%endif
32
33
34; Include module specific .INC files
35%ifdef MODULE_8BIT_IDE
36 %include "DmaController.inc"
37 %include "IDE_8bit.inc" ; For IDE 8-bit data port macros
38 %include "XTCF.inc" ; For Lo-tech XT-CF
39 %include "JRIDE_ISA.inc" ; For JR-IDE/ISA
40%endif
41
42%ifdef MODULE_ADVANCED_ATA
43 %include "Vision.inc" ; For QDI Vision QD65xx VLB IDE Controllers
44%endif
45
46%ifdef MODULE_EBIOS
47 %include "EBIOS.inc" ; Equates for EBIOS functions
48%endif
49
50%ifdef MODULE_HOTKEYS
51 %include "HotkeyBar.inc" ; For Hotkeys
52 %ifdef MODULE_BOOT_MENU
53 %include "BootMenu.inc" ; For Boot Menu
54 %endif
55%endif
56
57%ifdef MODULE_IRQ
58 %include "IntController.inc"
59%endif
60
61
62; Included modules for ROMVARS.wFlags
63%ifdef MODULE_8BIT_IDE
64 MAIN_FLG_MODULE_8BIT_IDE EQU FLG_ROMVARS_MODULE_8BIT_IDE
65%else
66 MAIN_FLG_MODULE_8BIT_IDE EQU 0
67%endif
68
69%ifdef MODULE_ADVANCED_ATA
70 MAIN_FLG_MODULE_ADVANCED_ATA EQU FLG_ROMVARS_MODULE_ADVANCED_ATA
71%else
72 MAIN_FLG_MODULE_ADVANCED_ATA EQU 0
73%endif
74
75%ifdef MODULE_BOOT_MENU
76 MAIN_FLG_MODULE_BOOT_MENU EQU FLG_ROMVARS_MODULE_BOOT_MENU
77%else
78 MAIN_FLG_MODULE_BOOT_MENU EQU 0
79%endif
80
81%ifdef MODULE_EBIOS
82 MAIN_FLG_MODULE_EBIOS EQU FLG_ROMVARS_MODULE_EBIOS
83%else
84 MAIN_FLG_MODULE_EBIOS EQU 0
85%endif
86
87%ifdef MODULE_HOTKEYS
88 MAIN_FLG_MODULE_HOTKEYS EQU FLG_ROMVARS_MODULE_HOTKEYS
89%else
90 MAIN_FLG_MODULE_HOTKEYS EQU 0
91%endif
92
93%ifdef MODULE_IRQ
94 MAIN_FLG_MODULE_IRQ EQU FLG_ROMVARS_MODULE_IRQ
95%else
96 MAIN_FLG_MODULE_IRQ EQU 0
97%endif
98
99%ifdef MODULE_SERIAL
100 MAIN_FLG_MODULE_SERIAL EQU FLG_ROMVARS_MODULE_SERIAL
101%else
102 MAIN_FLG_MODULE_SERIAL EQU 0
103%endif
104
105%ifdef MODULE_SERIAL_FLOPPY
106 MAIN_FLG_MODULE_SERIAL_FLOPPY EQU FLG_ROMVARS_MODULE_SERIAL_FLOPPY
107%else
108 MAIN_FLG_MODULE_SERIAL_FLOPPY EQU 0
109%endif
110
111%ifdef MODULE_STRINGS_COMPRESSED
112 MAIN_FLG_MODULE_STRINGS_COMPRESSED EQU FLG_ROMVARS_MODULE_STRINGS_COMPRESSED
113%else
114 MAIN_FLG_MODULE_STRINGS_COMPRESSED EQU 0
115%endif
116
117%ifdef MODULE_FEATURE_SETS
118 MAIN_FLG_MODULE_FEATURE_SETS EQU FLG_ROMVARS_MODULE_FEATURE_SETS
119%else
120 MAIN_FLG_MODULE_FEATURE_SETS EQU 0
121%endif
122
123MASK_ROMVARS_INCLUDED_MODULES EQU MAIN_FLG_MODULE_8BIT_IDE | MAIN_FLG_MODULE_ADVANCED_ATA | MAIN_FLG_MODULE_BOOT_MENU | MAIN_FLG_MODULE_EBIOS | MAIN_FLG_MODULE_HOTKEYS | MAIN_FLG_MODULE_IRQ | MAIN_FLG_MODULE_SERIAL | MAIN_FLG_MODULE_SERIAL_FLOPPY | MAIN_FLG_MODULE_STRINGS_COMPRESSED | MAIN_FLG_MODULE_FEATURE_SETS
Note: See TracBrowser for help on using the repository browser.