about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2025-01-19 11:19:18 -0500
committerelioat <elioat@tilde.institute>2025-01-19 11:19:18 -0500
commitebb50d6472b6eff661022de9b50c35e293b7326d (patch)
tree4c407540d1d0fb8cb56a4d73e341ea8b626b2304
parent6e1e7c2731f5eb429c7e9e0eb3bfc00aedaa3bf4 (diff)
downloadtour-ebb50d6472b6eff661022de9b50c35e293b7326d.tar.gz
*
-rwxr-xr-xawk/vm/vm.awk6
1 files changed, 3 insertions, 3 deletions
diff --git a/awk/vm/vm.awk b/awk/vm/vm.awk
index 9467661..67da3e7 100755
--- a/awk/vm/vm.awk
+++ b/awk/vm/vm.awk
@@ -13,9 +13,9 @@
 BEGIN {
     # Initialize VM state
     stack_pointer = 0    # Points to next free position
-    pc = 0              # Program counter
-    MAX_STACK = 100     # Maximum stack size
-    MAX_MEM = 1000      # Memory size
+    pc = 0               # Program counter
+    MAX_STACK = 100      # Maximum stack size
+    MAX_MEM = 1000       # Memory size
     
     # Initialize registers
     A = 0              # A register
id='n118' href='#n118'>118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162