Revert "added SYSTEM.INT8, SYSTEM.INT16, SYSTEM.INT32, SYSTEM.INT64. tested only"

This reverts commit 38794808ac.
This commit is contained in:
Norayr Chilingarian 2015-03-10 19:32:11 +04:00
parent b899460455
commit 712244b161
6 changed files with 4 additions and 19 deletions

View file

@ -12,6 +12,7 @@
MODULE SYSTEM; (* J. Templ, 31.5.95 *)
IMPORT SYSTEM; (*must not import other modules*)
CONST
ModNameLen = 20;
CmdNameLen = 24;

View file

@ -12,7 +12,7 @@ uses double # as concatenation operator
*/
#include <alloca.h>
#include <stdint.h>
extern void *memcpy(void *dest, const void *src, unsigned long n);
extern void *malloc(unsigned long size);
extern void exit(int status);
@ -51,10 +51,7 @@ typedef void *SYSTEM_PTR;
//#define *SYSTEM_PTR void
//typedef unsigned char SYSTEM_BYTE;
#define SYSTEM_BYTE unsigned char
#define SYSTEM_INT8 int8_t
#define SYSTEM_INT16 int16_t
#define SYSTEM_INT32 int32_t
#define SYSTEM_INT64 int64_t
/* runtime system routines */
extern long SYSTEM_DIV();
extern long SYSTEM_MOD();