Pruned #includes and made minor cleanups in NEDsim header file.
authorAaron Taylor <ataylor@subgeniuskitty.com>
Fri, 9 Jul 2021 01:24:57 +0000 (18:24 -0700)
committerAaron Taylor <ataylor@subgeniuskitty.com>
Fri, 9 Jul 2021 01:24:57 +0000 (18:24 -0700)
hacks/NEDsim/simulator.h

index bf014eb..c79d5fd 100644 (file)
@@ -1,40 +1,20 @@
 /* (c) 2021 Aaron Taylor <ataylor at subgeniuskitty dot com>                  */
 /* See LICENSE.txt file for copyright and license details.                    */
 
 /* (c) 2021 Aaron Taylor <ataylor at subgeniuskitty dot com>                  */
 /* See LICENSE.txt file for copyright and license details.                    */
 
-// TODO: Prune includes in both this header and the corresponding source file.
-#include <stdio.h>
-#include <stdint.h>
-#include <inttypes.h>
-#include <stdlib.h>
 #include <stdbool.h>
 #include <stdbool.h>
-#include <unistd.h>
-#include <fcntl.h>
-#include <string.h>
-#include <errno.h>
-#include <time.h>
-#include <termios.h>
-#include <signal.h>
-#include <sys/socket.h>
-#include <sys/types.h>
-#include <netinet/in.h>
-#include <arpa/inet.h>
-#include <netdb.h>
-
 #include "./a.out.h"
 
 /* Bytes per word. */
 #define BPW 4
 
 #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
 
 #define RAM_BASE_ADDRESS 0x20000000
 
-/* Number of syllables per word. */
-#define SPW 5
-
 struct NEDpsw {
     bool zero;
     bool negative;
 struct NEDpsw {
     bool zero;
     bool negative;