Changeset 550 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Inc
- Timestamp:
- Apr 27, 2013, 5:30:50 PM (12 years ago)
- google:author:
- aitotat@gmail.com
- Location:
- trunk/XTIDE_Universal_BIOS/Inc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Inc/CustomDPT.inc
r542 r550 40 40 .bPchsHeads resb 1 ; (1...16) 41 41 .bPchsSectorsPerTrack resb 1 ; (1...63) 42 %ifdef MODULE_COMPATIBLE_TABLES OR MODULE_EBIOS 43 .wPchsCylinders resb 2 44 %endif 42 45 43 ; LBA and remaining P-CHS variables46 ; Total LBA sector count 44 47 %ifdef MODULE_EBIOS 45 .wPchsCylinders resb 246 48 .twLbaSectors resb 6 ; 48-bit sector count for LBA addressing 47 49 %endif … … 64 66 65 67 ; Bit definitions for DPT.bFlagsHigh 66 FLGH_DPT_ BLOCK_MODE_SUPPORTEDEQU (1<<1) ; Bit 1, Use block transfer commands (must be bit 1!)68 FLGH_DPT_USE_BLOCK_MODE_COMMANDS EQU (1<<1) ; Bit 1, Use block transfer commands (must be bit 1!) 67 69 %ifdef MODULE_SERIAL 68 70 FLGH_DPT_SERIAL_DEVICE EQU (1<<2) ; Bit 2, Serial Port Device -
trunk/XTIDE_Universal_BIOS/Inc/ModuleDependency.inc
r541 r550 50 50 %endif 51 51 52 %ifdef MODULE_COMPATIBLE_TABLES 53 %include "CompatibleDPT.inc" 54 %endif 55 52 56 %ifdef MODULE_EBIOS 53 57 %include "EBIOS.inc" ; Equates for EBIOS functions 54 %ifdef CREATE_COMPATIBLE_DPT55 %include "CompatibleDPT.inc"56 %endif57 58 %endif 58 59
Note:
See TracChangeset
for help on using the changeset viewer.