Changeset 50 in xtideuniversalbios for trunk/Assembly_Library/Inc
- Timestamp:
- Oct 9, 2010, 5:47:26 PM (14 years ago)
- google:author:
- aitotat
- Location:
- trunk/Assembly_Library/Inc
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Inc/AssemblyLibrary.inc
r48 r50 15 15 %include "Debug.inc" 16 16 %include "DosFunctions.inc" 17 %include "File.inc" 17 18 %include "Math.inc" 18 19 -
trunk/Assembly_Library/Inc/Display.inc
r48 r50 2 2 ; Project name : AssemblyLibrary 3 3 ; Created date : 25.6.2010 4 ; Last update : 6.10.20104 ; Last update : 9.10.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Defines for display library. … … 110 110 ; Display context flags 111 111 FLG_CONTEXT_ATTRIBUTES EQU (1<<0) ; Character output function uses attributes 112 FLG_CONTEXT_CGA EQU (1<<1) ; CGA detected so prevent CGA snow 112 113 113 114 -
trunk/Assembly_Library/Inc/DosFunctions.inc
r41 r50 2 2 ; Project name : AssemblyLibrary 3 3 ; Created date : 1.9.2010 4 ; Last update : 3.9.20104 ; Last update : 8.10.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Defines for MS-DOS functions. … … 30 30 ; DOS errors 31 31 ERR_DOS_DRIVE_NOT_READY EQU 15h 32 33 34 ; File attribute flags35 FLG_FILEATTR_READ_ONLY EQU (1<<0)36 FLG_FILEATTR_HIDDEN EQU (1<<1)37 FLG_FILEATTR_SYSTEM EQU (1<<2)38 FLG_FILEATTR_VOLUME_LABEL EQU (1<<3)39 FLG_FILEATTR_DIRECTORY EQU (1<<4)40 FLG_FILEATTR_ARCHIVE EQU (1<<5)41 32 42 33 -
trunk/Assembly_Library/Inc/Emulate.inc
r41 r50 2 2 ; Project name : Emulation library 3 3 ; Created date : 21.10.2009 4 ; Last update : 29.7.20104 ; Last update : 9.10.2010 5 5 ; Author : Tomi Tilli 6 6 ; Description : Macros for emulating later x86 instruction with older … … 318 318 sub sp, %1 319 319 mov bp, sp 320 ;eENTER %1, 0321 ;sub bp, %1 ; SS:BP now points to struct322 320 %endmacro 323 321 … … 334 332 add sp, %1 335 333 pop bp 336 ;add bp, %1 ; Restore BP to what it was after eENTER337 ;eLEAVE338 334 %endmacro 339 335
Note:
See TracChangeset
for help on using the changeset viewer.