aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-04-16 15:38:24 +0630
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-04-16 15:38:24 +0630
commit05136fdd25bf065f81ed20f74d402592a7c6e8f2 (patch)
tree7f8903864084d77b10f90912b6bf880cd6167078
parent1e7f1bdee91324613a1675642775d6ed32d7e94d (diff)
downloadovm-05136fdd25bf065f81ed20f74d402592a7c6e8f2.tar.gz
ovm-05136fdd25bf065f81ed20f74d402592a7c6e8f2.tar.bz2
ovm-05136fdd25bf065f81ed20f74d402592a7c6e8f2.zip
Fixed examples for changes in lexer
Name assigned to %CONST is the next symbol in stream, not the symbol attached to it.
-rw-r--r--asm/lexer.cpp2
-rw-r--r--examples/factorial.asm2
-rw-r--r--examples/fib.asm10
3 files changed, 7 insertions, 7 deletions
diff --git a/asm/lexer.cpp b/asm/lexer.cpp
index 991e551..e2efdfe 100644
--- a/asm/lexer.cpp
+++ b/asm/lexer.cpp
@@ -50,7 +50,7 @@ pair<token_t, lerr_t> tokenise_symbol(string_view &source, size_t &column,
token_t t{};
- if (initial_match(sym, "%CONST"))
+ if (sym == "%CONST")
{
t.type = token_type_t::PP_CONST;
}
diff --git a/examples/factorial.asm b/examples/factorial.asm
index 54fc956..c4257e4 100644
--- a/examples/factorial.asm
+++ b/examples/factorial.asm
@@ -6,7 +6,7 @@
;; 65 which means that past 20! results are truncated and therefore
;; the program produces inaccurate factorials.
- %const(limit) 20 %end
+ %const limit 20 %end
;; Setup entrypoint
global main
diff --git a/examples/fib.asm b/examples/fib.asm
index 0a9e969..7f4c360 100644
--- a/examples/fib.asm
+++ b/examples/fib.asm
@@ -5,26 +5,26 @@
;;; stack version.
;; Constants
- %const(limit) 93 %end
+ %const limit 93 %end
- %const(increment_i)
+ %const increment_i
push.reg.word 2
push.word 1
plus.word
mov.word 2
%end
- %const(print_i)
+ %const print_i
push.reg.word 2
print.word
%end
- %const(print_reg_0)
+ %const print_reg_0
push.reg.word 0
print.word
%end
- %const(print_reg_1)
+ %const print_reg_1
push.reg.word 1
print.word
%end