Changeset 184 in xtideuniversalbios for trunk/Assembly_Library
- Timestamp:
- Nov 15, 2011, 5:21:19 AM (13 years ago)
- google:author:
- gregli@hotmail.com
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Display/DisplayFormat.asm
r181 r184 128 128 .rgcFormatCharToLookupIndex: 129 129 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS 130 db "a AduxsSct-+%"130 db "aIAduxsSct-+%" 131 131 %else 132 db " Auxsc-" ; Required by XTIDE Universal BIOS132 db "IAuxsc-" ; Required by XTIDE Universal BIOS 133 133 %endif 134 134 .rgcFormatCharToLookupIndexEnd: … … 138 138 dw a_FormatAttributeForNextCharacter 139 139 %endif 140 dw I_FormatDashForZero 140 141 dw A_FormatAttributeForRemainingString 141 142 %ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS … … 320 321 %endif 321 322 322 ALIGN JUMP_ALIGN 323 ALIGN JUMP_ALIGN 323 324 u_FormatUnsignedDecimalWord: 324 325 mov ax, [bp] … … 335 336 336 337 ALIGN JUMP_ALIGN 338 I_FormatDashForZero: 339 mov ax, [bp] 340 test ax,ax 341 jnz u_FormatUnsignedDecimalWord 342 mov [bp], word g_szDashForZero 343 ;;; fall-through 344 345 ALIGN JUMP_ALIGN 337 346 s_FormatStringFromSegmentCS: 338 347 xchg si, [bp]
Note:
See TracChangeset
for help on using the changeset viewer.