Changeset 50 in xtideuniversalbios for trunk/Assembly_Library/Src/File/FileIO.asm


Ignore:
Timestamp:
Oct 9, 2010, 5:47:26 PM (14 years ago)
Author:
aitotat
google:author:
aitotat
Message:

Changes to Assembly Library:
Removed Memory_ExchangeSSBPwithESDI since it obviously corrupted stack.
CGA detection is now only done once when initializing Display Context.
Moved File Library defines to File.inc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Assembly_Library/Src/File/FileIO.asm

    r41 r50  
    22; Project name  :   Assembly Library
    33; Created date  :   1.9.2010
    4 ; Last update   :   3.9.2010
     4; Last update   :   8.10.2010
    55; Author        :   Tomi Tilli
    66; Description   :   Functions for file access.
    7 
    8 
    9 ; File access and sharing modes
    10 struc FILE_ACCESS
    11     .ReadOnly       resb    1
    12     .WriteOnly      resb    1
    13     .ReadAndWrite   resb    1
    14 endstruc
    15 
    16 ; Origin of file seek
    17 struc SEEK_FROM
    18     .startOfFile            resb    1
    19     .currentFilePosition    resb    1
    20     .endOfFile              resb    1
    21 endstruc
    22 
    237
    248; Section containing code
Note: See TracChangeset for help on using the changeset viewer.