source: xtideuniversalbios/trunk/Assembly_Library/Src/AssemblyLibrary.asm @ 52

Last change on this file since 52 was 52, checked in by aitotat, 14 years ago

Changes to Assembly Library:
Completely rewritten line splitting (slower but no need to modify string).
Some changes to string processing functions.
Saved few bytes from CGA detection.

File size: 1.8 KB
Line 
1; File name     :   AssemblyLibrary.asm
2; Project name  :   Assembly Library
3; Created date  :   15.9.2010
4; Last update   :   12.10.2010
5; Author        :   Tomi Tilli
6; Description   :   Assembly Library main file. This is the only file that
7;                   needs to be included.
8
9; Section containing code
10SECTION .text
11
12%ifdef INCLUDE_DISPLAY_LIBRARY
13    %include "CgaSnow.asm"
14    %include "Display.asm"
15    %include "DisplayCharOut.asm"
16    %include "DisplayContext.asm"
17    %include "DisplayCursor.asm"
18    %include "DisplayFormat.asm"
19    %include "DisplayPage.asm"
20    %include "DisplayPrint.asm"
21%endif
22
23%ifdef INCLUDE_FILE_LIBRARY
24    %include "Directory.asm"
25    %include "DosCritical.asm"
26    %include "Drive.asm"
27    %include "FileIO.asm"
28%endif
29
30%ifdef INCLUDE_KEYBOARD_LIBRARY
31    %include "Keyboard.asm"
32%endif
33
34%ifdef INCLUDE_MENU_LIBRARY
35    %include "CharOutLineSplitter.asm"
36    %include "Menu.asm"
37    %include "MenuAttributes.asm"
38    %include "MenuBorders.asm"
39    %include "MenuCharOut.asm"
40    %include "MenuEvent.asm"
41    %include "MenuInit.asm"
42    %include "MenuLocation.asm"
43    %include "MenuLoop.asm"
44    %include "MenuScrollbars.asm"
45    %include "MenuText.asm"
46    %include "MenuTime.asm"
47
48    %ifdef INCLUDE_MENU_DIALOGS
49        %include "Dialog.asm"
50        %include "DialogFile.asm"
51        %include "DialogMessage.asm"
52        %include "DialogProgress.asm"
53        %include "DialogSelection.asm"
54        %include "DialogString.asm"
55        %include "DialogWord.asm"
56        %include "ItemLineSplitter.asm"
57        %include "StringsForDialogs.asm"
58    %endif
59%endif
60
61%ifdef INCLUDE_STRING_LIBRARY
62    %include "Char.asm"
63    %include "String.asm"
64    %include "StringProcess.asm"
65%endif
66
67%ifdef INCLUDE_TIME_LIBRARY
68    %include "Delay.asm"
69    %include "TimerTicks.asm"
70%endif
71
72%ifdef INCLUDE_UTIL_LIBRARY
73    %include "Bit.asm"
74    %include "Memory.asm"
75    %include "Size.asm"
76    %include "Sort.asm"
77%endif
Note: See TracBrowser for help on using the repository browser.