Changeset 55 for trunk/BOOTCODE/REGULAR/OTHER.ASM
- Timestamp:
- Jan 28, 2016, 9:39:16 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BOOTCODE/REGULAR/OTHER.ASM
r54 r55 166 166 call MBR_TeletypeNL 167 167 168 169 ; This sets [CurIO_UseExtension] flag.170 call PRECRAP_CheckFor13extensions171 mov al,[CurIO_UseExtension]172 test al,al173 jnz INT13X_Supported174 175 ;176 ; Show Message that BIOS INT13X is not supported177 ; and Halt the System.178 ;179 mov cx, 0C04h180 mov si, offset TXT_NoINT13XSupport181 call SETUP_ShowErrorBox182 183 ; Halt the system.184 jmp HaltSystem185 186 187 ;188 ; INT13X Supported so continue.189 ;190 INT13X_Supported:191 192 168 xor cx,cx 193 169 PRECRAP_Main_next_disk: … … 349 325 350 326 327 ; This sets [CurIO_UseExtension] flag. 328 call PRECRAP_CheckFor13extensions 329 mov al,[CurIO_UseExtension] 330 test al,al 331 jnz INT13X_Supported 332 333 ; 334 ; Show Message that BIOS INT13X is not supported 335 ; and Halt the System. 336 ; 337 mov cx, 0C04h 338 mov si, offset TXT_NoINT13XSupport 339 call SETUP_ShowErrorBox 340 341 ; Halt the system. 342 jmp HaltSystem 343 344 345 ; 346 ; INT13X Supported so continue. 347 ; 348 INT13X_Supported: 351 349 352 350 IFNDEF ReleaseCode
Note:
See TracChangeset
for help on using the changeset viewer.