Changeset 341 in xtideuniversalbios for trunk/Assembly_Library/Src/Display/DisplayFormat.asm


Ignore:
Timestamp:
Mar 13, 2012, 4:19:02 PM (12 years ago)
Author:
krille_n_@…
google:author:
krille_n_@hotmail.com
Message:

Changes:

  • Fixed a bug from r323 in DisplayPrint.asm.
  • Removed some unused code from XTIDECFG (undoing the change to Math.asm in r336 as part of it).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/Display/DisplayFormat.asm

    r241 r341  
    348348    push    cx
    349349    mov     si, [bp]
    350        
     350
    351351    cmp     si, byte 07fh       ;  well within the boundaries of ROMVARS_size
    352352    jb      .notFormatted
     
    358358    inc     bp
    359359    jmp     .done
    360        
    361 .notFormatted: 
     360
     361.notFormatted:
    362362    call    DisplayPrint_NullTerminatedStringFromCSSI
    363        
     363
    364364.done:
    365365    pop     cx
    366366    pop     si
    367     ret     
    368 
    369 ALIGN JUMP_ALIGN
    370 z_FormatStringFromSegmentZero: 
     367    ret
     368
     369ALIGN JUMP_ALIGN
     370z_FormatStringFromSegmentZero:
    371371    xchg    si, [bp]
    372372    xor     bx, bx
    373373    call    DisplayPrint_NullTerminatedStringFromBXSI
    374374    mov     si, [bp]
    375     ret     
     375    ret
    376376
    377377%ifndef EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
Note: See TracChangeset for help on using the changeset viewer.