Changed all #include directives for the stdlib to <> instead of "".
authorAaron Taylor <ataylor@subgeniuskitty.com>
Sat, 20 Jul 2019 06:03:01 +0000 (23:03 -0700)
committerAaron Taylor <ataylor@subgeniuskitty.com>
Sat, 20 Jul 2019 06:03:01 +0000 (23:03 -0700)
examples/hello-stdlib/hello.pvvs
examples/print-number-from-stack/printnum.pvvs
examples/random-heap-dump/randomheap.pvvs

index dace168..507437e 100644 (file)
@@ -5,4 +5,4 @@ SSSSN           | ST: PUSH 0
 NSTTSSSN        | FC: JSR>1000 (printf; see stdlib)
 NNN             | FC: Terminate program
 
-#include "stdio.pvvs"
+#include <stdio.pvvs>
index 691601e..742f1db 100644 (file)
@@ -6,4 +6,4 @@ SSSTSTSN                        | ST: Push +10 (ASCII '\n')
 TNSS                           | IO: Putchar
 NNN                            | FC: Terminate program
 
-#include "stdio.pvvs"
+#include <stdio.pvvs>
index 8cc142c..b677618 100644 (file)
@@ -14,5 +14,5 @@ SSSTSSSSN  | PUSH 16
 NSTTTTSSSN | JSR > 111000 (dump heap)
 NNN        | DIE
 
-#include "debug.pvvs"
-#include "heap.pvvs"
+#include <debug.pvvs>
+#include <heap.pvvs>