Changeset 67 in xtideuniversalbios for trunk/Assembly_Library/Inc/Display.inc


Ignore:
Timestamp:
Dec 9, 2010, 5:14:25 PM (13 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Assembly Library:

  • Forgot to update SI on new File Read and Write functions.
  • Screen clearing function now accepts any character and attribute.
  • Menu library now accepts CR,LF combination as line feed. Previously only LF,CR worked properly.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Inc/Display.inc

    r52 r67  
    22; Project name  :   AssemblyLibrary
    33; Created date  :   25.6.2010
    4 ; Last update   :   11.10.2010
     4; Last update   :   7.12.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Defines for display library.
     
    6464    .PrintNewlineCharacters                         resb    2
    6565    .ClearAreaWithHeightInAHandWidthInAL            resb    2
    66     .ClearScreen                                    resb    2
     66    .ClearScreenWithCharInALandAttrInAH             resb    2
    6767endstruc
    6868
     
    229229    %define SCREEN_BACKGROUND_ATTRIBUTE     MONO_NORMAL
    230230%endif
     231%define SCREEN_BACKGROUND_CHARACTER_AND_ATTRIBUTE   (SCREEN_BACKGROUND_CHARACTER | (SCREEN_BACKGROUND_ATTRIBUTE<<8))
     232%define DOS_BACKGROUND_CHARACTER_AND_ATTRIBUTE      (' ' | (MONO_NORMAL<<8))
    231233
    232234%endif ; DISPLAY_INC
Note: See TracChangeset for help on using the changeset viewer.