From 1cab0dffeb3c9566d983ae98df137999615ca2ba Mon Sep 17 00:00:00 2001 From: cancel Date: Sun, 2 Jan 2022 23:26:13 +0000 Subject: [PATCH] Removed unused fields in uxn.h --- src/uxn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uxn.h b/src/uxn.h index bb6690f..d69c432 100644 --- a/src/uxn.h +++ b/src/uxn.h @@ -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;