Removed unused fields in uxn.h
This commit is contained in:
parent
52598bdad7
commit
1cab0dffeb
|
@ -18,7 +18,7 @@ typedef unsigned int Uint32;
|
||||||
#define PAGE_PROGRAM 0x0100
|
#define PAGE_PROGRAM 0x0100
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
Uint8 ptr, kptr, error;
|
Uint8 ptr;
|
||||||
Uint8 dat[256];
|
Uint8 dat[256];
|
||||||
} Stack;
|
} Stack;
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ typedef struct Device {
|
||||||
} Device;
|
} Device;
|
||||||
|
|
||||||
typedef struct Uxn {
|
typedef struct Uxn {
|
||||||
Stack wst, rst, *src, *dst;
|
Stack wst, rst;
|
||||||
Memory ram;
|
Memory ram;
|
||||||
Device dev[16];
|
Device dev[16];
|
||||||
} Uxn;
|
} Uxn;
|
||||||
|
|
Loading…
Reference in New Issue