Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remainder value (returned by MOD) should not be negative #92

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions bootstrap/SYSTEM.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ INT64 SYSTEM_DIV(INT64 x, INT64 y)

INT64 SYSTEM_MOD(INT64 x, INT64 y)
{
if (x == 0) return 0;
if (x >= 0)
if (y >= 0) {return x % y;}
else {return (y+1) + ((x-1) % (-y));}
else
if (y >= 0) {return (y-1) - ((-x-1) % y);}
else {return -((-x) % (-y));}
if (x == 0) {return 0;}
INT64 m = x % y;
if (m < 0)
{
m = (y < 0) ? m - y : m + y;
}
return m;
}

INT64 SYSTEM_ENTIER(double x)
Expand Down
4 changes: 2 additions & 2 deletions bootstrap/unix-44/Compiler.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspamS */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspamS */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down Expand Up @@ -89,7 +89,7 @@ static void Compiler_PropagateElementaryTypeSizes (void)
OPT_sintobj->typ = OPT_sinttyp;
OPT_intobj->typ = OPT_inttyp;
OPT_lintobj->typ = OPT_linttyp;
switch (OPM_LongintSize) {
switch (OPM_SetSize) {
case 4:
OPT_settyp = OPT_set32typ;
break;
Expand Down
4 changes: 2 additions & 2 deletions bootstrap/unix-44/Configuration.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand All @@ -19,6 +19,6 @@ export void *Configuration__init(void)
__DEFMOD;
__REGMOD("Configuration", 0);
/* BEGIN */
__MOVE("2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8.", Configuration_versionLong, 76);
__MOVE("2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8.", Configuration_versionLong, 76);
__ENDMOD;
}
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Configuration.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef Configuration__h
#define Configuration__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Files.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Files.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef Files__h
#define Files__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Heap.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. rtsSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. rtsSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Heap.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. rtsSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. rtsSF */

#ifndef Heap__h
#define Heap__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Modules.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Modules.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef Modules__h
#define Modules__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/OPB.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/OPB.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef OPB__h
#define OPB__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/OPC.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/OPC.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef OPC__h
#define OPC__h
Expand Down
10 changes: 7 additions & 3 deletions bootstrap/unix-44/OPM.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down Expand Up @@ -27,7 +27,7 @@ export INT16 OPM_AddressSize;
static INT16 OPM_GlobalAlignment;
export INT16 OPM_Alignment;
export UINT32 OPM_GlobalOptions, OPM_Options;
export INT16 OPM_ShortintSize, OPM_IntegerSize, OPM_LongintSize;
export INT16 OPM_ShortintSize, OPM_IntegerSize, OPM_LongintSize, OPM_SetSize;
export INT64 OPM_MaxIndex;
export LONGREAL OPM_MinReal, OPM_MaxReal, OPM_MinLReal, OPM_MaxLReal;
export BOOLEAN OPM_noerr;
Expand Down Expand Up @@ -338,7 +338,7 @@ BOOLEAN OPM_OpenPar (void)
OPM_LogWLn();
OPM_LogWStr((CHAR*)" -O2 Original Oberon / Oberon-2: 8 bit SHORTINT, 16 bit INTEGER, 32 bit LONGINT and SET.", 95);
OPM_LogWLn();
OPM_LogWStr((CHAR*)" -OC Component Pascal: 16 bit SHORTINT, 32 bit INTEGER, 64 bit LONGINT and SET.", 95);
OPM_LogWStr((CHAR*)" -OC Component Pascal: 16 bit SHORTINT, 32 bit INTEGER and SET, 64 bit LONGINT.", 95);
OPM_LogWLn();
OPM_LogWStr((CHAR*)" -OV Alternate large model: 8 bit SHORTINT, 32 bit INTEGER, 64 bit LONGINT and SET.", 95);
OPM_LogWLn();
Expand Down Expand Up @@ -410,21 +410,25 @@ void OPM_InitOptions (void)
OPM_ShortintSize = 1;
OPM_IntegerSize = 2;
OPM_LongintSize = 4;
OPM_SetSize = 4;
break;
case 'C':
OPM_ShortintSize = 2;
OPM_IntegerSize = 4;
OPM_LongintSize = 8;
OPM_SetSize = 4;
break;
case 'V':
OPM_ShortintSize = 1;
OPM_IntegerSize = 4;
OPM_LongintSize = 8;
OPM_SetSize = 8;
break;
default:
OPM_ShortintSize = 1;
OPM_IntegerSize = 2;
OPM_LongintSize = 4;
OPM_SetSize = 4;
break;
}
__MOVE(OPM_InstallDir, OPM_ResourceDir, 1024);
Expand Down
4 changes: 2 additions & 2 deletions bootstrap/unix-44/OPM.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef OPM__h
#define OPM__h
Expand All @@ -9,7 +9,7 @@
import CHAR OPM_Model[10];
import INT16 OPM_AddressSize, OPM_Alignment;
import UINT32 OPM_GlobalOptions, OPM_Options;
import INT16 OPM_ShortintSize, OPM_IntegerSize, OPM_LongintSize;
import INT16 OPM_ShortintSize, OPM_IntegerSize, OPM_LongintSize, OPM_SetSize;
import INT64 OPM_MaxIndex;
import LONGREAL OPM_MinReal, OPM_MaxReal, OPM_MinLReal, OPM_MaxLReal;
import BOOLEAN OPM_noerr;
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/OPP.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/OPP.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef OPP__h
#define OPP__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/OPS.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/OPS.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef OPS__h
#define OPS__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/OPT.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/OPT.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef OPT__h
#define OPT__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/OPV.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/OPV.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef OPV__h
#define OPV__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Out.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Out.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef Out__h
#define Out__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Platform.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Platform.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef Platform__h
#define Platform__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Reals.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Reals.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef Reals__h
#define Reals__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Strings.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Strings.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef Strings__h
#define Strings__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Texts.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/Texts.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef Texts__h
#define Texts__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/VT100.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/VT100.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef VT100__h
#define VT100__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/extTools.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-44/extTools.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef extTools__h
#define extTools__h
Expand Down
4 changes: 2 additions & 2 deletions bootstrap/unix-48/Compiler.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspamS */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspamS */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down Expand Up @@ -89,7 +89,7 @@ static void Compiler_PropagateElementaryTypeSizes (void)
OPT_sintobj->typ = OPT_sinttyp;
OPT_intobj->typ = OPT_inttyp;
OPT_lintobj->typ = OPT_linttyp;
switch (OPM_LongintSize) {
switch (OPM_SetSize) {
case 4:
OPT_settyp = OPT_set32typ;
break;
Expand Down
4 changes: 2 additions & 2 deletions bootstrap/unix-48/Configuration.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand All @@ -19,6 +19,6 @@ export void *Configuration__init(void)
__DEFMOD;
__REGMOD("Configuration", 0);
/* BEGIN */
__MOVE("2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8.", Configuration_versionLong, 76);
__MOVE("2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8.", Configuration_versionLong, 76);
__ENDMOD;
}
2 changes: 1 addition & 1 deletion bootstrap/unix-48/Configuration.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef Configuration__h
#define Configuration__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-48/Files.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-48/Files.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef Files__h
#define Files__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-48/Heap.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. rtsSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. rtsSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-48/Heap.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. rtsSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. rtsSF */

#ifndef Heap__h
#define Heap__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-48/Modules.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-48/Modules.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef Modules__h
#define Modules__h
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-48/OPB.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#define SHORTINT INT8
#define INTEGER INT16
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/unix-48/OPB.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* voc 2.1.0 [2019/11/01]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */
/* voc 2.1.0 [2020/06/12]. Bootstrapping compiler for address size 8, alignment 8. xrtspaSF */

#ifndef OPB__h
#define OPB__h
Expand Down
Loading