Changeset 70 for trunk/include/version.inc
- Timestamp:
- Apr 8, 2017, 12:25:59 AM (8 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/version.inc
r69 r70 70 70 AB_YEAR EQU 2017h 71 71 AB_MONTH EQU 03h 72 AB_DAY EQU 1 5h72 AB_DAY EQU 17h 73 73 74 74 ; The Hours, Minutes and Seconds, again in BCD for easy manipulation. … … 85 85 AB_SIG_DATE EQU (AB_MONTH SHL 8) OR AB_DAY 86 86 87 ;88 ; This macro inserts the AiR-BOOT signature at the place where it is invoked.89 ;90 InsertAirbootSignature MACRO lang91 db 'AiRBOOT'92 dw AB_SIG_DATE93 dw AB_SIG_YEAR94 dw AB_SIG_VERSION95 ; Wasm can only process the reference to 'lang' in pass 2 because it comes96 ; from an included file which it has not processed yet at pass 1.97 IFDEF WASM98 IF299 db lang100 ENDIF101 ; The other assemblers process 'lang' correctly in pass 1.102 ELSE103 db lang104 ENDIF105 ENDM
Note:
See TracChangeset
for help on using the changeset viewer.