Changeset 51 in xtideuniversalbios for trunk/Assembly_Library/Src/Menu/MenuCharOut.asm


Ignore:
Timestamp:
Oct 11, 2010, 8:27:43 AM (14 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Assembly Library:
File handle is now properly returned when opening file.
Added function for getting file size by using file handle.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/Menu/MenuCharOut.asm

    r48 r51  
    22; Project name  :   Assembly Library
    33; Created date  :   15.7.2010
    4 ; Last update   :   8.10.2010
     4; Last update   :   10.10.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Character out function for printing withing menu window.
     
    8080ALIGN JUMP_ALIGN
    8181MovePartialWordToNewTextLineAndPrintCharacterFromAX:
    82     cmp     al, ' '
    83     je      SHORT .MoveCursorInDItoBeginningOfNextLine
     82    cmp     al, ' '     ; Space or any control character
     83    jb      SHORT .MoveCursorInDItoBeginningOfNextLine
    8484    push    si
    8585    push    cx
Note: See TracChangeset for help on using the changeset viewer.