Changeset 142 for trunk/bootcode/regular/other.asm
- Timestamp:
- Apr 8, 2017, 12:27:38 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/regular/other.asm
r141 r142 91 91 IFDEF AUX_DEBUG 92 92 IF 1 93 DBG_TEXT_OUT_AUX 'PRECRAP_Main '93 DBG_TEXT_OUT_AUX 'PRECRAP_Main:' 94 94 PUSHRF 95 95 ;~ call DEBUG_DumpRegisters … … 158 158 call VideoIO_PrintBuildInfo 159 159 160 IFDEF AUX_DEBUG 161 ; Initialize the com-port for debugging 162 call AuxIO_Init 163 ENDIF 160 ; Show message if com-port debugging is active 161 IFDEF AUX_DEBUG 162 ; Don't show message if com-port debugging is not active 163 mov dx, [BIOS_AuxParms] 164 test dl, dl 165 jz @F 166 167 ; Show initialization message 168 mov si, offset AuxInitMsg 169 call MBR_Teletype 170 171 ; Sync output position 172 call VideoIO_SyncPos 173 174 ; Show port number 175 mov al, dl 176 call VideoIO_PrintByteDynamicNumber 177 xor si, si 178 call MBR_TeletypeNL 179 @@: 180 ENDIF 164 181 165 182 xor si,si … … 181 198 ;! was loaded from a disk where the MBR cannot be written ! 182 199 ;! 183 184 185 IFDEF AUX_DEBUG186 IF 1187 call DEBUG_Dump1188 ENDIF189 ENDIF190 200 191 201
Note:
See TracChangeset
for help on using the changeset viewer.