Changeset 212 for trunk/include
- Timestamp:
- Nov 9, 2017, 11:25:40 PM (8 years ago)
- Location:
- trunk/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/version.h
r188 r212 43 43 #define BLDLVL_MAJOR_VERSION "1" 44 44 #define BLDLVL_MIDDLE_VERSION "1" 45 #define BLDLVL_MINOR_VERSION " 2"45 #define BLDLVL_MINOR_VERSION "4" 46 46 47 47 // Build date 48 48 #define BLDLVL_YEAR "2017" 49 #define BLDLVL_MONTH " 04"50 #define BLDLVL_DAY " 13"49 #define BLDLVL_MONTH "11" 50 #define BLDLVL_DAY "07" 51 51 52 52 // Build time 53 53 #define BLDLVL_HOURS "01" 54 54 #define BLDLVL_MINUTES "01" 55 #define BLDLVL_SECONDS "0 2"55 #define BLDLVL_SECONDS "04" 56 56 57 57 #else … … 60 60 #define BLDLVL_MAJOR_VERSION "1" 61 61 #define BLDLVL_MIDDLE_VERSION "1" 62 #define BLDLVL_MINOR_VERSION " 1"62 #define BLDLVL_MINOR_VERSION "3" 63 63 64 64 // Build date 65 65 #define BLDLVL_YEAR "2017" 66 #define BLDLVL_MONTH " 04"67 #define BLDLVL_DAY " 13"66 #define BLDLVL_MONTH "11" 67 #define BLDLVL_DAY "07" 68 68 69 69 // Build time -
trunk/include/version.inc
r188 r212 32 32 AB_MAJOR_VERSION EQU 1 33 33 AB_MIDDLE_VERSION EQU 1 34 AB_MINOR_VERSION EQU 234 AB_MINOR_VERSION EQU 4 35 35 36 36 ; The Year, Month and Day in BCD so we can easily extract nibbles. 37 37 AB_YEAR EQU 2017h 38 AB_MONTH EQU 04h39 AB_DAY EQU 13h38 AB_MONTH EQU 11h 39 AB_DAY EQU 07h 40 40 41 41 ; The Hours, Minutes and Seconds, again in BCD for easy manipulation. 42 42 AB_HOURS EQU 01h 43 43 AB_MINUTES EQU 01h 44 AB_SECONDS EQU 0 2h44 AB_SECONDS EQU 04h 45 45 46 46 ELSE … … 50 50 AB_MAJOR_VERSION EQU 1 51 51 AB_MIDDLE_VERSION EQU 1 52 AB_MINOR_VERSION EQU 152 AB_MINOR_VERSION EQU 3 53 53 54 54 ; The Year, Month and Day in BCD so we can easily extract nibbles. 55 55 AB_YEAR EQU 2017h 56 AB_MONTH EQU 04h57 AB_DAY EQU 13h56 AB_MONTH EQU 11h 57 AB_DAY EQU 07h 58 58 59 59 ; The Hours, Minutes and Seconds, again in BCD for easy manipulation.
Note:
See TracChangeset
for help on using the changeset viewer.