Changeset 248 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Main.asm
- Timestamp:
- Feb 13, 2012, 1:22:18 PM (13 years ago)
- google:author:
- aitotat@gmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Main.asm
r243 r248 154 154 iend 155 155 156 ; Libraries and data156 ; Libraries, data, Initialization and drive detection 157 157 %include "AssemblyLibrary.asm" 158 %ifdef MODULE_STRINGS_COMPRESSED159 %include "StringsCompressed.asm"160 %else161 %include "Strings.asm" ; For BIOS message strings162 %endif163 164 ; Initialization and drive detection165 158 %include "Initialize.asm" ; For BIOS initialization 166 159 %include "Interrupts.asm" ; For Interrupt initialization 167 160 %include "RamVars.asm" ; For RAMVARS initialization and access 161 %ifdef MODULE_STRINGS_COMPRESSED 162 %include "StringsCompressed.asm" 163 %else 164 %include "Strings.asm" ; For BIOS message strings 165 %endif 168 166 %include "CreateDPT.asm" ; For creating DPTs 169 167 %include "FindDPT.asm" ; For finding DPTs … … 173 171 %include "DetectDrives.asm" ; For detecting IDE drives 174 172 %include "DetectPrint.asm" ; For printing drive detection strings 175 173 176 174 ; Boot menu 177 175 %include "BootMenu.asm" ; For Boot Menu operations
Note:
See TracChangeset
for help on using the changeset viewer.