diff options
author | elioat <elioat@tilde.institute> | 2025-01-19 11:19:18 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2025-01-19 11:19:18 -0500 |
commit | ebb50d6472b6eff661022de9b50c35e293b7326d (patch) | |
tree | 4c407540d1d0fb8cb56a4d73e341ea8b626b2304 | |
parent | 6e1e7c2731f5eb429c7e9e0eb3bfc00aedaa3bf4 (diff) | |
download | tour-ebb50d6472b6eff661022de9b50c35e293b7326d.tar.gz |
*
-rwxr-xr-x | awk/vm/vm.awk | 6 |
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 |