Misc cleanup. License headers and removing old examples.
authorAaron Taylor <ataylor@subgeniuskitty.com>
Tue, 31 Mar 2020 06:16:53 +0000 (23:16 -0700)
committerAaron Taylor <ataylor@subgeniuskitty.com>
Tue, 31 Mar 2020 06:16:53 +0000 (23:16 -0700)
Makefile
examples/Makefile
examples/random-heap-dump/Makefile [deleted file]
examples/random-heap-dump/randomheap.pvvs [deleted file]
vv_compiler.c
vv_interpreter.c

index d07a47c..1b5e913 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 # (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
 # (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
-# All rights reserved.
+# See LICENSE.txt file for copyright and license details.
 
 ####################################################################################################
 # Configuration
 
 ####################################################################################################
 # Configuration
index cb5ac3d..7c7f9f9 100644 (file)
@@ -1,5 +1,5 @@
 # (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
 # (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
-# All rights reserved.
+# See LICENSE.txt file for copyright and license details.
 
 EXAMPLES != find . -mindepth 1 -maxdepth 1 -type d
 
 
 EXAMPLES != find . -mindepth 1 -maxdepth 1 -type d
 
diff --git a/examples/random-heap-dump/Makefile b/examples/random-heap-dump/Makefile
deleted file mode 100644 (file)
index 9d0ab07..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
-# All rights reserved.
-
-include ../config.mk
-
-all: randomheap
-
-randomheap:
-       $(CPP) $(CPP_FLAGS) -o temp.pvvs randomheap.pvvs
-       $(VVS_COMPILER) -i temp.pvvs -o randomheap.vvs
-       @rm -f temp.pvvs
-
-run: randomheap
-       $(VVS_INTERPRETER) -i randomheap.vvs
-
-clean:
-       @rm -f randomheap.vvs temp.pvvs
diff --git a/examples/random-heap-dump/randomheap.pvvs b/examples/random-heap-dump/randomheap.pvvs
deleted file mode 100644 (file)
index b677618..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-@@ Seed the RNG
-SSSSN                                | PUSH 0 (ptr)
-SSSTTSTTTTSTSTSTTSTTSTTTTTSTTTSTTTTN | PUSH Seed value
-TTS                                  | STORE
-
-@@ Populate heap[18]-heap[29] with random values
-SSSTSTTN   | PUSH 11
-SSSTSSTSN  | PUSH 18
-NSTTTSTSN  | JSR > 11010 (memrand)
-
-@@ Print heap[16]-heap[31]
-SSSTTTTTN  | PUSH 31
-SSSTSSSSN  | PUSH 16
-NSTTTTSSSN | JSR > 111000 (dump heap)
-NNN        | DIE
-
-#include <debug.pvvs>
-#include <heap.pvvs>
index 988eee9..d4f6af9 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
 /*
  * (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
- * All rights reserved.
+ * See LICENSE.txt file for copyright and license details.
  */
 
 #include <stdio.h>
  */
 
 #include <stdio.h>
index cf5cdef..1e42baf 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
 /*
  * (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
- * All rights reserved.
+ * See LICENSE.txt file for copyright and license details.
  */
 
 #include <stdio.h>
  */
 
 #include <stdio.h>