shithub: scc

ref: e8eb00c8f615dd5820f1e0b4c4e88cdd53c48b68
dir: /machine.h/

View raw version

#ifndef MACHINE_H_
#define MACHINE_H_

#define ALIGN(size, offset) ((size) + (offset))
#define PTRSIZE      2
#define CHARSIZE     1
#define SHORTSIZE    2
#define INTSIZE      2
#define LONGSIZE     4
#define LLONGSIZE    8
#define FLOATSIZE    4
#define LFLOATSIZE   8
#define LLFLOATSIZE 16

#endif