| ... | ... |
@@ -18,7 +18,7 @@ typedef unsigned int Uint32; |
| 18 | 18 |
#define PAGE_PROGRAM 0x0100 |
| 19 | 19 |
|
| 20 | 20 |
typedef struct {
|
| 21 |
- Uint8 ptr, kptr, error; |
|
| 21 |
+ Uint8 ptr; |
|
| 22 | 22 |
Uint8 dat[256]; |
| 23 | 23 |
} Stack; |
| 24 | 24 |
|
| ... | ... |
@@ -36,7 +36,7 @@ typedef struct Device {
|
| 36 | 36 |
} Device; |
| 37 | 37 |
|
| 38 | 38 |
typedef struct Uxn {
|
| 39 |
- Stack wst, rst, *src, *dst; |
|
| 39 |
+ Stack wst, rst; |
|
| 40 | 40 |
Memory ram; |
| 41 | 41 |
Device dev[16]; |
| 42 | 42 |
} Uxn; |