mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 16:52:25 +00:00
introducing new integer types in SYSTEM module. -- noch.
Former-commit-id: 747943b008
This commit is contained in:
parent
7de984b46a
commit
9d6a71eb59
26 changed files with 923 additions and 673 deletions
|
|
@ -12,6 +12,7 @@ uses double # as concatenation operator
|
|||
*/
|
||||
|
||||
#include <alloca.h>
|
||||
#include <stdint.h> /* for type sizes -- noch */
|
||||
|
||||
extern void *memcpy(void *dest, const void *src, unsigned long n);
|
||||
extern void *malloc(unsigned long size);
|
||||
|
|
@ -51,6 +52,10 @@ typedef void *SYSTEM_PTR;
|
|||
//#define *SYSTEM_PTR void
|
||||
//typedef unsigned char SYSTEM_BYTE;
|
||||
#define SYSTEM_BYTE unsigned char
|
||||
typedef int8_t SYSTEM_INT8;
|
||||
typedef int16_t SYSTEM_INT16;
|
||||
typedef int32_t SYSTEM_INT32;
|
||||
typedef int64_t SYSTEM_INT64;
|
||||
|
||||
/* runtime system routines */
|
||||
extern long SYSTEM_DIV();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue