1 /* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
2 
3 #define SHORTINT INT8
4 #define INTEGER  INT16
5 #define LONGINT  INT32
6 #define SET      UINT32
7 
8 #include "SYSTEM.h"
9 
10 
11 export CHAR Configuration_versionLong[76];
12 
13 
14 
15 
16 
Configuration__init(void)17 export void *Configuration__init(void)
18 {
19 	__DEFMOD;
20 	__REGMOD("Configuration", 0);
21 /* BEGIN */
22 	__MOVE("2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8.", Configuration_versionLong, 76);
23 	__ENDMOD;
24 }
25