Changeset 29 for trunk/BOOTCODE/REGULAR/STD_TEXT.ASM
- Timestamp:
- May 5, 2011, 2:00:00 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BOOTCODE/REGULAR/STD_TEXT.ASM
r23 r29 1 2 ; Disclaimer:3 ; =============4 ; The sourcecode is released via www.netlabs.org CVS *ONLY*.5 ; You MUST NOT upload it to other servers nor republish it in any way.6 ; The sourcecode is still COPYRIGHTED and NOT RELEASED UNDER GPL.7 ; It's (c) Copyright 1998-2003 by Martin Kiewitz.8 ; You may recompile the source and do *PRIVATE* modifications, but please keep9 ; in mind that modifying this code needs at least *some* assembly skill. If10 ; you mess up your system, because you needed to hack your way through, don't11 ; blame me. Releasing a customized version of AiR-BOOT, selling it in any form12 ; or reusing parts of this source is *PROHIBITED*. Ask me, if you have some13 ; idea about new functionality *before* developing the code, otherwise I will14 ; definitely reject it. Also please accept, that I have some basic design15 ; rules on AiR-BOOT and I will maintain them at all costs, so this won't get16 ; another GRUB.17 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 18 ;--------------------------------------------------------------------------- 19 19 ; AiR-BOOT / TEXT 20 20 ;--------------------------------------------------------------------------- 21 21 22 ; If you modify this Copyright and release this shiatunder your own name,22 ; If you modify this Copyright and release this under your own name, 23 23 ; I'm going to sue your cheap ass, rape your dog and blow up your house. =) 24 24 25 CopyrightVersionLen equ 5 26 Copyright db ' AiR-BOOT v1.01 - (c) 1998-2003 Martin Kiewitz, Dedicated to Gerd Kiewitz', 0 27 IFDEF ReleaseCommercial 28 RegisteredTo db 'Registered To: Myself', 0 29 ELSE 30 BootEndMsg db 'Distribute/copy freely. Only meant for private usage.', 0 31 ENDIF 25 CopyrightVersionLen equ 5 26 Copyright db ' AiR-BOOT v1.06 - (c) 1998-2009 M. Kiewitz, Dedicated to Gerd Kiewitz', 0 27 BootEndMsg db 'Free usage allowed, as long as you dont or have not worked for US government', 0 28 BootEndMsg2 db 'This is GPLv3+ software. Please visit http://AiR-BOOT.sourceforge.net', 0 32 29 33 CheckID_MBR db 'AiRBOOT' 30 CheckID_MBR db 'AiRBOOT' 31 BrokenHDD db ' (HDDx)', 0 34 32 35 ContinueBIOSbootTable dw offset TXT_SETUP_MAGIC_CDROM 36 dw offset TXT_SETUP_MAGIC_Network 37 dw offset TXT_SETUP_MAGIC_ZIPLS 38 dw 0 33 ; Colors for special words hard-coded. Keep all 0s. 34 TXT_SETUP_LowerMessage db 'This software is released under ', 0, 'GPLv3+.', 0 35 db 'It may not be used by US government', 0 36 db 'For more information and source, please visit', 0 37 db 'http://AiR-BOOT.sourceforge.net', 0 38 db 'Contact via e-mail: ', 0, 'm_kiewitz [AT] users.sourceforge.net', 0 39 40 ContinueBIOSbootTable dw offset TXT_SETUP_MAGIC_CDROM 41 dw offset TXT_SETUP_MAGIC_Network 42 dw offset TXT_SETUP_MAGIC_ZIPLS 43 dw 0
Note:
See TracChangeset
for help on using the changeset viewer.