uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit 1cab0dffeb3c9566d983ae98df137999615ca2ba
parent 52598bdad71d5d37f0de18744124e15b15e6f18a
Author: cancel <cancel@cancel.fm>
Date:   Sun,  2 Jan 2022 23:26:13 +0000

Removed unused fields in uxn.h

Diffstat:
Msrc/uxn.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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;