Changeset 127
- Timestamp:
- Apr 8, 2017, 12:27:26 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/regular/debug.asm
r111 r127 326 326 ; Dump some disk information. 327 327 ; 328 IF 0328 IF 1 329 329 ddi db 10,'DumpDiskInfo:',10,0 330 330 DEBUG_DumpDiskInfo Proc … … 342 342 call AuxIO_TeletypeNL 343 343 344 ; Show disk parameters (legacy version) 345 pusha 346 mov dl, al 347 mov ah, 08h 348 int 13h 349 call DEBUG_DumpRegisters 350 popa 351 352 ; Show status of last operation 353 pusha 354 mov dl, al 355 mov ah, 01 356 int 13h 357 mov al, ah 358 call AuxIO_TeletypeHexByte 359 call AuxIO_TeletypeNL 360 popa 344 ; Load the MBR 345 mov dl, al 346 mov si, offset [TmpSector] 347 call DriveIO_LoadMBR 348 call DEBUG_DumpRegisters 349 call AuxIO_DumpSector 361 350 362 351 popa
Note:
See TracChangeset
for help on using the changeset viewer.