mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-05 23:22:25 +00:00
24 lines
483 B
C
24 lines
483 B
C
/* voc 1.95 [2016/11/24]. Bootstrapping compiler for address size 8, alignment 8. xtspaSF */
|
|
|
|
#define SHORTINT INT8
|
|
#define INTEGER INT16
|
|
#define LONGINT INT32
|
|
#define SET UINT32
|
|
|
|
#include "SYSTEM.h"
|
|
|
|
|
|
export CHAR Configuration_versionLong[75];
|
|
|
|
|
|
|
|
|
|
|
|
export void *Configuration__init(void)
|
|
{
|
|
__DEFMOD;
|
|
__REGMOD("Configuration", 0);
|
|
/* BEGIN */
|
|
__MOVE("1.95 [2016/11/24]. Bootstrapping compiler for address size 8, alignment 8.", Configuration_versionLong, 75);
|
|
__ENDMOD;
|
|
}
|