duskos

dusk os fork
git clone git://git.alexwennerberg.com/duskos
Log | Files | Refs | README | LICENSE

commit dda84a2ed3242730ea74ccbfc9367f2bc9c6e2ab
parent 2f99bf57ebeff87c0bc239eccd7c4eeaaf27b19f
Author: Virgil Dupras <hsoft@hardcoded.net>
Date:   Sat, 26 Nov 2022 14:50:09 -0500

emul/uxn: consolidation

Diffstat:
Mfs/emul/uxn/vm.c | 6+-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/fs/emul/uxn/vm.c b/fs/emul/uxn/vm.c @@ -21,11 +21,7 @@ struct Device { typedef void (*VMOP) (); static unsigned char ram[$10000]; -// TODO: allow single line decl -static Stack wst; -static Stack rst; -static Stack *src; -static Stack *dst; +static Stack wst, rst, *src, *dst; static Device dev[$10]; static unsigned short pc; // Program Counter static int bs; // byte/short 0=byte 1=short