Changeset 91
- Timestamp:
- Apr 8, 2017, 12:26:27 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/regular/debug.asm
r90 r91 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 … … 332 332 pusha 333 333 334 add al, 50h ; ASCII '0' to BIOS 80h, '1'->81h, etc. 334 ; ASCII '0' to BIOS 80h, '1'->81h, etc. 335 add al, 50h 335 336 336 337 mov si, offset [ddi] 337 338 call AuxIO_Print 338 339 340 ; Print disk-number 339 341 call AuxIO_TeletypeHexByte 340 342 call AuxIO_TeletypeNL 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 341 361 342 362 popa … … 708 728 pushf 709 729 pusha 710 call DEBUG_Test_CONV_BinToPBCD730 ;~ call DEBUG_Test_CONV_BinToPBCD 711 731 ;~ call DEBUG_Test_MATH_Mul32 712 732 popa … … 725 745 ; Test the packed BCD conversion function. 726 746 ; 727 IF 1747 IF 0 728 748 db_testbin2pbcd db "## TEST BIN2PBCD ##",10,0 729 749 DEBUG_Test_CONV_BinToPBCD Proc
Note:
See TracChangeset
for help on using the changeset viewer.