Changeset 192 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src/Main.asm
- Timestamp:
- Nov 16, 2011, 11:35:45 AM (13 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Main.asm
r186 r192 170 170 %include "DetectDrives.asm" ; For detecting IDE drives 171 171 %include "DetectPrint.asm" ; For printing drive detection strings 172 172 173 173 ; Boot menu 174 174 %include "BootMenu.asm" ; For Boot Menu operations 175 175 %include "BootMenuEvent.asm" ; For menu library event handling 176 %include "BootMenuPrint.asm" ; For printing Boot Menu strings (needs to come after BootMenuEvent.asm) 176 ; NOTE: BootMenuPrint needs to come immediately after BootMenuEvent 177 %include "BootMenuPrint.asm" ; For printing Boot Menu strings 178 %include "BootPrint.asm" ; For printing boot information 179 %include "BootMenuPrintCfg.asm" ; For printing hard disk configuration 177 180 %include "FloppyDrive.asm" ; Floppy Drive related functions 178 181 %include "BootSector.asm" ; For loading boot sector 179 %include "BootPrint.asm" ; For printing boot information180 %include "BootMenuPrintCfg.asm" ; For printing hard disk configuration181 182 182 183 ; Boot loader … … 187 188 188 189 ; For all device types 190 %include "Idepack.asm" 189 191 %include "Device.asm" 190 %include "Idepack.asm"191 192 %include "Timer.asm" ; For timeout and delay 192 193 … … 194 195 %include "IdeCommand.asm" 195 196 %include "IdeTransfer.asm" ; Must be included after IdeCommand.asm 197 %include "IdeWait.asm" 198 %include "IdeError.asm" ; Must be included after IdeWait.asm 196 199 %include "IdeDPT.asm" 197 200 %include "IdeIO.asm" 198 201 %include "IdeIrq.asm" 199 %include "IdeWait.asm"200 %include "IdeError.asm" ; Must be included after IdeWait.asm201 202 202 203 %ifdef MODULE_SERIAL ; Serial Port Device support
Note:
See TracChangeset
for help on using the changeset viewer.