[41] | 1 | ; Project name : Assembly Library
|
---|
| 2 | ; Description : Tests for Assembly Library.
|
---|
| 3 | ; Builds wanted library functions to check their size.
|
---|
| 4 |
|
---|
[376] | 5 | ;
|
---|
[526] | 6 | ; XTIDE Universal BIOS and Associated Tools
|
---|
| 7 | ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team.
|
---|
[376] | 8 | ;
|
---|
| 9 | ; This program is free software; you can redistribute it and/or modify
|
---|
| 10 | ; it under the terms of the GNU General Public License as published by
|
---|
| 11 | ; the Free Software Foundation; either version 2 of the License, or
|
---|
| 12 | ; (at your option) any later version.
|
---|
[526] | 13 | ;
|
---|
[376] | 14 | ; This program is distributed in the hope that it will be useful,
|
---|
| 15 | ; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 16 | ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
[526] | 17 | ; GNU General Public License for more details.
|
---|
[376] | 18 | ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
---|
[526] | 19 | ;
|
---|
[376] | 20 |
|
---|
[41] | 21 | ; Include .inc files
|
---|
[139] | 22 | %define EXCLUDE_FROM_XTIDE_UNIVERSAL_BIOS
|
---|
[85] | 23 | ;%define INCLUDE_DISPLAY_LIBRARY
|
---|
[73] | 24 | ;%define INCLUDE_FILE_LIBRARY
|
---|
| 25 | ;%define INCLUDE_KEYBOARD_LIBRARY
|
---|
[85] | 26 | %define INCLUDE_MENU_LIBRARY
|
---|
[73] | 27 | ;%define INCLUDE_MENU_DIALOGS
|
---|
| 28 | ;%define INCLUDE_STRING_LIBRARY
|
---|
| 29 | ;%define INCLUDE_TIME_LIBRARY
|
---|
| 30 | ;%define INCLUDE_UTIL_LIBRARY
|
---|
[85] | 31 |
|
---|
[41] | 32 | %include "AssemblyLibrary.inc" ; Assembly Library. Must be included first!
|
---|
| 33 |
|
---|
| 34 |
|
---|
| 35 | ; Include library sources
|
---|
| 36 | %include "AssemblyLibrary.asm"
|
---|