Changeset 505 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc
- Timestamp:
- Feb 25, 2013, 4:23:09 PM (12 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/XTIDE_Universal_BIOS/Inc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Inc/CustomDPT.inc
r491 r505 71 71 %endif 72 72 %ifdef MODULE_FEATURE_SETS 73 FLGH_DPT_POWER_MANAGEMENT_SUPPORTED EQU (1<<5) ; Bit 4, Drive supports power management73 FLGH_DPT_POWER_MANAGEMENT_SUPPORTED EQU (1<<5) ; Bit 5, Drive supports power management 74 74 %endif 75 75 %ifdef MODULE_ADVANCED_ATA 76 FLGH_DPT_IORDY EQU (1<<7) ; Bit 5, Controller and Drive supports IORDY76 FLGH_DPT_IORDY EQU (1<<7) ; Bit 7, Controller and Drive supports IORDY 77 77 %endif 78 78 -
trunk/XTIDE_Universal_BIOS/Inc/RamVars.inc
r492 r505 3 3 4 4 ; 5 ; XTIDE Universal BIOS and Associated Tools 5 ; XTIDE Universal BIOS and Associated Tools 6 6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by XTIDE Universal BIOS Team. 7 7 ; … … 10 10 ; the Free Software Foundation; either version 2 of the License, or 11 11 ; (at your option) any later version. 12 ; 12 ; 13 13 ; This program is distributed in the hope that it will be useful, 14 14 ; but WITHOUT ANY WARRANTY; without even the implied warranty of 15 15 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 ; GNU General Public License for more details. 16 ; GNU General Public License for more details. 17 17 ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 18 18 ; … … 23 23 ; Segment when RAMVARS is stored to top of interrupt vectors. 24 24 %ifndef USE_AT 25 LITE_MODE_RAMVARS_SEGMENT EQU 30h25 LITE_MODE_RAMVARS_SEGMENT EQU 30h 26 26 %endif 27 27 28 %ifdef MODULE_SERIAL_FLOPPY29 %define NEED_XLATEVARS30 %endif31 28 32 %ifdef MODULE_ DRIVEXLATE29 %ifdef MODULE_SERIAL_FLOPPY OR MODULE_DRIVEXLATE 33 30 %define NEED_XLATEVARS 34 31 %endif … … 77 74 ; and number of drives (low order bit, max 2 drives supported). 78 75 ; During initialization, until the end of DetectDrives_FromAllIDEControllers, 79 ; this byte contains the raw number of floppy drives seen 76 ; this byte contains the raw number of floppy drives seen 80 77 ; (using .bFlopCreateCnt) 81 78 %else … … 105 102 106 103 ; 107 ; IDEPACK NOTE: The first six bytes of this structure are directly put on the 104 ; IDEPACK NOTE: The first six bytes of this structure are directly put on the 108 105 ; wire for MODULE_SERIAL, please do not change the order or insert other members. 109 106 ;
Note:
See TracChangeset
for help on using the changeset viewer.