Removed unused fields in uxn.h

This commit is contained in:
cancel 2022-01-02 23:26:13 +00:00 committed by Andrew Alderwick
parent 52598bdad7
commit 1cab0dffeb
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ typedef unsigned int Uint32;
#define PAGE_PROGRAM 0x0100
typedef struct {
Uint8 ptr, kptr, error;
Uint8 ptr;
Uint8 dat[256];
} Stack;
@ -36,7 +36,7 @@ typedef struct Device {
} Device;
typedef struct Uxn {
Stack wst, rst, *src, *dst;
Stack wst, rst;
Memory ram;
Device dev[16];
} Uxn;