X-Git-Url: https://git.subgeniuskitty.com/screensavers/.git/blobdiff_plain/5923644e9538d96dfdcaba6f76b3f9f903da071c..839b757bd3c2b3cd75f150eea0e5403d2f15d7a6:/hacks/NEDsim/simulator.h diff --git a/hacks/NEDsim/simulator.h b/hacks/NEDsim/simulator.h index bf014eb..4a3769e 100644 --- a/hacks/NEDsim/simulator.h +++ b/hacks/NEDsim/simulator.h @@ -1,40 +1,19 @@ /* (c) 2021 Aaron Taylor */ /* See LICENSE.txt file for copyright and license details. */ -// TODO: Prune includes in both this header and the corresponding source file. -#include -#include -#include -#include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include "./a.out.h" /* Bytes per word. */ #define BPW 4 -/* Number of stack words. */ -#define STACK_LENGTH 65536 +/* Syllables per word. */ +#define SPW 5 -/* Number of bytes of RAM. */ -#define RAM_LENGTH 67108864 +/* Storage definitions. */ +#define STACK_LENGTH 65536 +#define RAM_LENGTH 67108864 #define RAM_BASE_ADDRESS 0x20000000 -/* Number of syllables per word. */ -#define SPW 5 - struct NEDpsw { bool zero; bool negative;