Changeset 380 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src
- Timestamp:
- Apr 8, 2012, 6:17:37 PM (13 years ago)
- google:author:
- krille_n_@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Main.asm
r379 r380 14 14 15 15 ; 16 ; XTIDE Universal BIOS and Associated Tools 16 ; XTIDE Universal BIOS and Associated Tools 17 17 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team. 18 18 ; … … 21 21 ; the Free Software Foundation; either version 2 of the License, or 22 22 ; (at your option) any later version. 23 ; 23 ; 24 24 ; This program is distributed in the hope that it will be useful, 25 25 ; but WITHOUT ANY WARRANTY; without even the implied warranty of 26 26 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 27 ; GNU General Public License for more details. 27 ; GNU General Public License for more details. 28 28 ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 29 29 ; … … 114 114 at ROMVARS.bMinFddCnt, db 0 ; Do not force minimum number of floppy drives 115 115 at ROMVARS.bStealSize, db 1 ; Steal 1kB from base memory 116 at ROMVARS.bIdleTimeout, db 0 ; Standby timer disabled by default 116 117 117 118 at ROMVARS.ideVars0+IDEVARS.wPort, dw DEVICE_ATA_DEFAULT_PORT ; Controller Command Block base port … … 157 158 at ROMVARS.bMinFddCnt, db 1 ; Assume at least 1 floppy drive present if autodetect fails 158 159 at ROMVARS.bStealSize, db 1 ; Steal 1kB from base memory in full mode 160 at ROMVARS.bIdleTimeout, db 0 ; Standby timer disabled by default 159 161 160 162 at ROMVARS.ideVars0+IDEVARS.wPort, dw DEVICE_XTIDE_DEFAULT_PORT ; Controller Command Block base port … … 184 186 iend 185 187 186 ; Strings are first to avoid them moving unne ssarily when code is turned on and off with %ifdef's188 ; Strings are first to avoid them moving unnecessarily when code is turned on and off with %ifdef's 187 189 ; since some groups of strings need to be on the same 256-byte page. 188 190 ; 189 191 %ifdef MODULE_STRINGS_COMPRESSED 190 192 %define STRINGSCOMPRESSED_STRINGS 191 %include "StringsCompressed.asm" 193 %include "StringsCompressed.asm" 192 194 %else 193 195 %include "Strings.asm" ; For BIOS message strings … … 199 201 200 202 ; String compression tables need to come after the AssemblyLibrary (since they depend on addresses 201 ; established in the assembly library), and are unn cessary if strings are not compressed.203 ; established in the assembly library), and are unnecessary if strings are not compressed. 202 204 ; 203 205 %ifdef MODULE_STRINGS_COMPRESSED 204 %undef STRINGSCOMPRESSED_STRINGS 206 %undef STRINGSCOMPRESSED_STRINGS 205 207 %define STRINGSCOMPRESSED_TABLES 206 208 %include "StringsCompressed.asm" 207 209 %endif 208 210 209 211 %include "Initialize.asm" ; For BIOS initialization 210 212 %include "Interrupts.asm" ; For Interrupt initialization
Note:
See TracChangeset
for help on using the changeset viewer.