Changeset 195 in xtideuniversalbios for trunk/Assembly_Library/Src
- Timestamp:
- Nov 19, 2011, 3:37:34 AM (13 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Display/DisplayFormatCompressed.asm
r194 r195 114 114 ; if it is zero, DisplayPrint_CharacterFromAL will not emit 115 115 116 or dh, al ; skip leading zeros, dh keeps track if we have emitted anythng non-zero117 jnz .PrintDigit ; note that dh starts at zero, from the div instruction in .DivLoop116 or bh, al ; skip leading zeros, bh keeps track if we have emitted anythng non-zero 117 jnz .PrintDigit ; note that bh starts at zero, from the loop above 118 118 119 119 test ch,2 ; are we padding with leading spaces? … … 129 129 .NoHexAdjustment: 130 130 131 push dx ; preserve dh for future iterations132 131 call DisplayPrint_CharacterFromAL 133 pop dx134 132 135 133 jmp .PrintLoop
Note:
See TracChangeset
for help on using the changeset viewer.