Changeset 188 for trunk/bootcode/regular/std_text.asm
- Timestamp:
- Nov 7, 2017, 7:12:56 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bootcode/regular/std_text.asm
r165 r188 27 27 ; I'm going to sue your cheap ass, rape your dog and blow up your house. =) 28 28 29 CopyrightVersionLen equ 630 ;Copyright db ' AiR-BOOT v1.06 - (c) 1998-2009 M. Kiewitz, Dedicated to Gerd Kiewitz', 031 ;Copyright db ' AiR-BOOT v1.07 - (c) 2011 M. Kiewitz - Rousseau test-version >502G (build: #24)', 032 ;Copyright db ' AiR-BOOT v1.07 - (c) 2011 M. Kiewitz - Release Candidate 1 - (build: #25)', 033 ;Copyright db ' AiR-BOOT v1.07 - (c) 1998-2011 M. Kiewitz, Dedicated to Gerd Kiewitz (rc2-b27)', 034 ;Copyright db ' AiR-BOOT v1.07 - (c) 1998-2011 M. Kiewitz, Dedicated to Gerd Kiewitz (rc3-b31)', 035 ;Copyright db ' AiR-BOOT v1.07 - (c) 1998-2011 M. Kiewitz, Dedicated to Gerd Kiewitz (rc4-b33)', 036 ;Copyright db ' AiR-BOOT v1.07 - (c) 1998-2011 M. Kiewitz, Dedicated to Gerd Kiewitz (rc5-b35)', 037 ;Copyright db ' AiR-BOOT v1.07 - (c) 1998-2011 M. Kiewitz, Dedicated to Gerd Kiewitz', 038 ;Copyright db ' AiR-BOOT v1.0.8 - (c) 1998-2011 M. Kiewitz, Dedicated to Gerd Kiewitz', 039 40 ;Copyright db ' AiR-BOOT v1.0.8-internal-beta - ** !! NOT FOR DISTRIBUTION !! **', 041 ;Copyright db ' AiR-BOOT v1.0.8 - (c) 2012 M. Kiewitz <<Release Candidate>> (build: #18)', 042 ;Copyright db ' AiR-BOOT v1.0.8 - (c) 2012 M. Kiewitz <<Release Candidate 1>> (bld: 20120124)', 043 ;Copyright db ' AiR-BOOT v1.0.8 - (c) 2012 M. Kiewitz <<Release Candidate 2>> (bld: 20120224)', 044 45 46 ;~ Copyright db ' AiR-BOOT v',BLDLVL_MAJOR_VERSION,'.',BLDLVL_MIDDLE_VERSION,'.',BLDLVL_MINOR_VERSION,' - (c) ',BLDLVL_YEAR,' M. Kiewitz <<Internal Release 2l>> (bld: ',BLDLVL_YEAR,BLDLVL_MONTH,BLDLVL_DAY,')', 047 29 48 30 ; 49 ; Masm found the above to be too complex, so we broke it up.31 ; Copyright header on top of screen 50 32 ; 51 33 Copyright: 34 IFDEF RELEASE 35 ; 36 ; Copyright header as displayed on RELEASE version 37 ; 52 38 db ' AiR-BOOT v' 53 39 db BLDLVL_MAJOR_VERSION,'.' … … 55 41 db BLDLVL_MINOR_VERSION,' - (c) 1998-' 56 42 db BLDLVL_YEAR 57 ;~ db ' M. Kiewitz <<Release Candidate 4>> (bld: ' 43 db ' Martin Kiewitz, Dedicated to Gerd Kiewitz' 44 db 0 45 ELSE 46 ; 47 ; Copyright header as displayed on TESTBUILD version 48 ; 49 db ' AiR-BOOT v' 50 db BLDLVL_MAJOR_VERSION,'.' 51 db BLDLVL_MIDDLE_VERSION,'.' 52 db BLDLVL_MINOR_VERSION,' - (c) 1998-' 53 db BLDLVL_YEAR 58 54 db ' M. Kiewitz << Test Build >> (bld:' 59 ;~ db ' Martin Kiewitz, Dedicated to Gerd Kiewitz'60 55 db BLDLVL_YEAR 61 56 db BLDLVL_MONTH 62 57 db BLDLVL_DAY,')' 63 58 db 0 59 ENDIF 64 60 65 ; 66 ; Normal copyright notice. 67 ; 68 ;~ Copyright db ' AiR-BOOT v1.0.8 - (c) 1998-2012 M. Kiewitz, Dedicated to Gerd Kiewitz', 0 69 70 61 ; Length of version string to copy when displayed in menu and just before 62 ; booting the selected system. 63 CopyrightVersionLen equ 6 71 64 72 65 ; License and source info. … … 105 98 ; Build Information string. 106 99 build_date db 'Build Date: ',0 107 jwasm_txt db 'JWasm',0108 masm_txt db 'Masm',0109 wasm_txt db 'Wasm',0110 tasm_txt db 'Tasm',0111 100 scanning_txt db 'Scanning...',0 112 unknown_txt db '????',0
Note:
See TracChangeset
for help on using the changeset viewer.