perfect6502-sys 0.2.2

Bindings to perfect6502
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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