1
0
mirror of https://github.com/mist64/perfect6502.git synced 2024-10-20 06:24:16 +00:00
perfect6502/types.h

19 lines
279 B
C

#ifndef _TYPES_H_
#define _TYPES_H_
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned char BOOL;
typedef uint16_t nodenum_t;
typedef struct {
nodenum_t gate;
nodenum_t c1;
nodenum_t c2;
} netlist_transdefs;
#define YES 1
#define NO 0
#endif