summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2026-03-23 22:29:13 +0100
committerandromeda <andromeda@lenovo>2026-03-23 22:29:13 +0100
commit40be72a5c37fcc99b1f92c4dc4b42339633c73e1 (patch)
treeac253584d999983517c8d0fbb24ac20d9fec8c8e
parentf4f0f50d80d07f19ba330653dba1d5180ea793b7 (diff)
remove superfluety
-rw-r--r--twasm/asm/main.asm4
1 files changed, 1 insertions, 3 deletions
diff --git a/twasm/asm/main.asm b/twasm/asm/main.asm
index 55e28ae..5cac78b 100644
--- a/twasm/asm/main.asm
+++ b/twasm/asm/main.asm
@@ -1735,9 +1735,7 @@ program:
db "; one line comment", 0x0A
db "mov rdx, [rax]", 0x0A
db "mov [rax], rdx", 0x0A
- db "hlt", 0x0A ; TODO make it so it doesn't need to end with a newline; this
- ; would mean range checking members in operator/operand/com-
- ; ment loops at the end of the program
+ db "hlt"
.size dq $ - program
msg_end db "end of the binary ->|", 0x0A, 0x00