Changeset 165 for trunk/bootcode/regular/other.asm
- Timestamp:
- Apr 8, 2017, 12:28:05 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/regular/other.asm
r164 r165 148 148 ; Copyright 149 149 mov si, [offset Copyright] 150 call MBR_Teletype151 xor si,si152 call MBR_TeletypeNL153 150 call VideoIO_Print 151 inc [TextPosY] 152 mov [TextPosX], 0 153 call MBR_TeletypeSyncPos 154 154 155 155 ;call SOUND_Beep … … 157 157 ; Show build info 158 158 call VideoIO_PrintBuildInfo 159 160 ; Let user know we started scanning... 161 IFDEF AUX_DEBUG 162 xor si, si 163 call MBR_TeletypeNL 164 ENDIF 165 mov si, offset [scanning_txt] 166 call MBR_TeletypeBold 159 167 160 168 ; Show message if com-port debugging is active … … 166 174 167 175 ; Show initialization message 176 mov ah, [TextPosY] 177 mov [TextPosY], 2 168 178 mov si, offset AuxInitMsg 169 call MBR_Teletype 179 ;~ call MBR_Teletype 180 call VideoIO_Print 170 181 171 182 ; Sync output position 172 call VideoIO_SyncPos183 ;~ call VideoIO_SyncPos 173 184 174 185 ; Show port number 175 186 mov al, dl 176 187 call VideoIO_PrintByteDynamicNumber 177 xor si, si 178 call MBR_TeletypeNL 188 mov [TextPosY], ah 179 189 @@: 180 190 ENDIF 181 182 xor si,si183 call MBR_TeletypeNL184 185 ;186 ; Phase 1 Indicator187 ;188 mov si, offset [Phase1]189 call MBR_Teletype190 191 mov si, offset OS2_InstallVolume192 mov al, [si]193 test al,al ; See if phase 1 is active194 jnz MBR_Main_BootThrough195 mov si, offset NotActive196 197 MBR_Main_BootThrough:198 call MBR_Teletype199 xor si,si200 call MBR_TeletypeNL201 202 191 203 192 ; Calculate Cooper-Bar Tables
Note:
See TracChangeset
for help on using the changeset viewer.