Changeset 186 for trunk/bootcode/airboot.asm
- Timestamp:
- Nov 7, 2017, 7:12:52 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/airboot.asm
r185 r186 29 29 30 30 ; 31 ; This one should never be undefined, but if so, then default to English. 32 ; 33 IFNDEF BLD_LANG 34 BLD_LANG EQU en 35 ENDIF 36 37 ; 31 38 ; Include AiR-BOOT Version Information. 32 39 ; This version-info is defined using simpel EQU's so it can serve as a … … 48 55 include ../include/asm.inc 49 56 57 ; 58 ; The BLD_LANG is passed as an unquoted string so it can be used with 59 ; the 'include' directive. But for other language conditional actions a quoted 60 ; version is needed. This macro creates BLD_LANG_TXT holding the language 61 ; in single quotes. 62 ; 63 enquote BLD_LANG,%BLD_LANG 50 64 51 65 ; We actually don't want to use this directive because it generates extra … … 101 115 ; different from being 'slash-dotted' ... ;) 102 116 ; 103 IF BLD_LANG EQ 'en'117 IF BLD_LANG_TXT EQ 'en' 104 118 IFNDEF AUX_DEBUG 105 119 FX_ENABLED EQU … … 884 898 885 899 ;------------------------------------------------------------------------------ 886 include text/txtmbr.asm; All translateable Text in MBR900 include_from text/%BLD_LANG,mbr.asm ; All translateable Text in MBR 887 901 ;------------------------------------------------------------------------------ 888 902 … … 1738 1752 1739 1753 b_txtother: 1740 include text/txtother.asm; All translateable Text-Strings1754 include_from text/%BLD_LANG,other.asm ; All translateable Text-Strings 1741 1755 size_txtother = $-b_txtother 1742 1756 1743 1757 b_txtmenus: 1744 include text/txtmenus.asm; All translateable Menu-text1758 include_from text/%BLD_LANG,menus.asm ; All translateable Menu-text 1745 1759 size_txtmenus = $-b_txtmenus 1746 1760
Note:
See TracChangeset
for help on using the changeset viewer.