| 1 | ; AiR-BOOT (c) Copyright 1998-2008 M. Kiewitz | 
|---|
| 2 | ; | 
|---|
| 3 | ; This file is part of AiR-BOOT | 
|---|
| 4 | ; | 
|---|
| 5 | ; AiR-BOOT is free software: you can redistribute it and/or modify it under | 
|---|
| 6 | ;  the terms of the GNU General Public License as published by the Free | 
|---|
| 7 | ;  Software Foundation, either version 3 of the License, or (at your option) | 
|---|
| 8 | ;  any later version. | 
|---|
| 9 | ; | 
|---|
| 10 | ; AiR-BOOT is distributed in the hope that it will be useful, but WITHOUT ANY | 
|---|
| 11 | ;  WARRANTY: without even the implied warranty of MERCHANTABILITY or FITNESS | 
|---|
| 12 | ;  FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | 
|---|
| 13 | ;  details. | 
|---|
| 14 | ; | 
|---|
| 15 | ; You should have received a copy of the GNU General Public License along with | 
|---|
| 16 | ;  AiR-BOOT. If not, see <http://www.gnu.org/licenses/>. | 
|---|
| 17 | ; | 
|---|
| 18 | ;------------------------------------------------------------------------------ | 
|---|
| 19 | ;                                                          AiR-BOOT / MBR-TEXT | 
|---|
| 20 | ; v001 - English - by Martin Kiewitz | 
|---|
| 21 | ;------------------------------------------------------------------------------ | 
|---|
| 22 |  | 
|---|
| 23 | TXT_LanguageID                equ 'E' | 
|---|
| 24 |  | 
|---|
| 25 | ; Those strings are saved within MBR. | 
|---|
| 26 | ; Total Length maximum 165 chars (include 13,10 (CRs), excluding ending Zeros) | 
|---|
| 27 |  | 
|---|
| 28 | TXT_ERROR_Attention            db 'AiR-BOOT: !ATTENTION!', 13, 10, 0 | 
|---|
| 29 | TXT_ERROR_CheckCode            db ' - The code', 0 | 
|---|
| 30 | TXT_ERROR_CheckFailed          db ' of AiR-BOOT is not intact anymore.', 13, 10 | 
|---|
| 31 | db '   Please boot via AiR-BOOT disc to restore AiR-BOOT.', 13, 10 | 
|---|
| 32 | db '   System halted. Please press RESET.', 0 | 
|---|