Changeset 109
- Timestamp:
- Apr 8, 2017, 12:27:06 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/airboot.asm
r105 r109 961 961 ; Verify we still got the BIOS disk in DL 962 962 IFDEF AUX_DEBUG 963 mov ax, dx 964 call AuxIO_TeletypeHexWord 965 call AuxIO_TeletypeNL 966 mov ax, bx 967 call AuxIO_TeletypeHexWord 968 call AuxIO_TeletypeNL 969 xor ah, ah 970 mov al, [BIOS_BootDisk] 971 call AuxIO_TeletypeHexWord 972 call AuxIO_TeletypeNL 963 IF 1 964 pusha 965 push si 966 mov si, offset $+5 967 jmp @F 968 db 10,'## AiR_BOOT_Start ##',10,0 969 @@: 970 call AuxIO_Print 971 pop si 972 call DEBUG_DumpRegisters 973 popa 974 ENDIF 973 975 ENDIF 974 976 … … 1022 1024 ;! Uncomment below to activate. 1023 1025 ;! 1024 __DUMP_BIOS_REGS__ EQU1026 ;~ __DUMP_BIOS_REGS__ EQU 1025 1027 IFDEF AUX_DEBUG 1026 1028 IFDEF __DUMP_BIOS_REGS__ … … 1066 1068 ; Dump drive-letters of dl-feature before partitions are 1067 1069 ; scanned and processed. 1068 call DEBUG_DumpDriveLetters1069 call DEBUG_DumpVolumeLetters1070 call DEBUG_DumpPartitionXref1070 ;~ call DEBUG_DumpDriveLetters 1071 ;~ call DEBUG_DumpVolumeLetters 1072 ;~ call DEBUG_DumpPartitionXref 1071 1073 ENDIF 1072 1074 … … 1096 1098 ;~ call DEBUG_DumpNewPartTable 1097 1099 ;~ call DEBUG_DumpDriveLetters 1098 call DEBUG_DumpDriveLetters1099 call DEBUG_DumpVolumeLetters1100 call DEBUG_DumpPartitionXref1100 ;~ call DEBUG_DumpDriveLetters 1101 ;~ call DEBUG_DumpVolumeLetters 1102 ;~ call DEBUG_DumpPartitionXref 1101 1103 ENDIF 1102 1104 … … 1126 1128 ;~ call DEBUG_DumpNewPartTable 1127 1129 ;~ call DEBUG_DumpDriveLetters 1128 call DEBUG_DumpDriveLetters1129 call DEBUG_DumpVolumeLetters1130 call DEBUG_DumpPartitionXref1130 ;~ call DEBUG_DumpDriveLetters 1131 ;~ call DEBUG_DumpVolumeLetters 1132 ;~ call DEBUG_DumpPartitionXref 1131 1133 ENDIF 1132 1134 -
trunk/include/version.h
r94 r109 32 32 #define BLDLVL_YEAR "2017" 33 33 #define BLDLVL_MONTH "03" 34 #define BLDLVL_DAY "2 1"34 #define BLDLVL_DAY "22" 35 35 // Build time 36 36 //~ #define BLDLVL_HOURS "01" -
trunk/include/version.inc
r94 r109 70 70 AB_YEAR EQU 2017h 71 71 AB_MONTH EQU 03h 72 AB_DAY EQU 2 1h72 AB_DAY EQU 22h 73 73 74 74 ; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
Note:
See TracChangeset
for help on using the changeset viewer.