mirror of
https://github.com/mist64/perfect6502.git
synced 2024-12-27 20:29:43 +00:00
18 lines
259 B
C
18 lines
259 B
C
#ifndef _TYPES_H_
|
|
#define _TYPES_H_
|
|
|
|
typedef unsigned char uint8_t;
|
|
typedef unsigned short uint16_t;
|
|
typedef unsigned int BOOL;
|
|
typedef uint16_t nodenum_t;
|
|
|
|
typedef struct {
|
|
int gate;
|
|
int c1;
|
|
int c2;
|
|
} netlist_transdefs;
|
|
|
|
#define YES 1
|
|
#define NO 0
|
|
|
|
#endif |