Changeset 596 in xtideuniversalbios for trunk/Assembly_Library/Inc
- Timestamp:
- Jul 10, 2018, 1:20:11 AM (6 years ago)
- Location:
- trunk/Assembly_Library/Inc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Inc/AssemblyLibrary.inc
r593 r596 9 9 %include "BiosData.inc" 10 10 %include "BiosFunctions.inc" 11 %include "CgaSnow.inc" 11 12 %include "CMOS.inc" 12 %include "CgaSnow.inc"13 13 %include "Debug.inc" 14 14 %include "Delay.inc" 15 15 %include "DosFunctions.inc" 16 %include "CMOS.inc"17 16 %include "File.inc" 18 17 %include "Math.inc" … … 27 26 %define INCLUDE_KEYBOARD_LIBRARY 28 27 %define INCLUDE_TIME_LIBRARY 29 28 30 29 %ifdef INCLUDE_MENU_DIALOGS 31 30 %include "Dialog.inc" -
trunk/Assembly_Library/Inc/BiosFunctions.inc
r593 r596 66 66 67 67 ; BIOS PCI 2.0+ functions 68 PCI_INSTALLATION_CHECK 68 PCI_INSTALLATION_CHECK EQU 0B101h 69 69 70 70 -
trunk/Assembly_Library/Inc/Emulate.inc
r592 r596 18 18 ;%define USE_386 ; Define to use 386 instructions 19 19 ;%define USE_AT ; Define for AT class machine 20 21 %ifdef USE_NEC_V ; This will run on NEC V20/V30 processors only 22 %define USE_186 ; Define to use 18x/V20/V30 instructions 23 %ifdef USE_UNDOC_INTEL OR USE_286 OR USE_386 24 %fatal "Conflicting processor define used together with USE_NEC_V!" 25 %endif 26 %endif 20 27 21 28 %ifdef USE_386 … … 87 94 %endif 88 95 %endmacro 96 97 98 %ifdef USE_NEC_V 99 %include "NEC_V.inc" 100 %endif 89 101 90 102 -
trunk/Assembly_Library/Inc/Macros.inc
r593 r596 125 125 126 126 ;-------------------------------------------------------------------- 127 ; Small delay between I/O port accesses sif needed.127 ; Small delay between I/O port accesses if needed. 128 128 ; 129 129 ; IO_DELAY
Note:
See TracChangeset
for help on using the changeset viewer.