1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-10-16 02:37:40 -05:00

Delete var.bsm

This commit is contained in:
Natapat Samutpong 2022-02-06 14:41:43 +07:00
parent 8be3cb5a55
commit b3396832fe

16
var.bsm
View file

@ -1,16 +0,0 @@
.function_return_true:
PUSH true
RET
.function_main:
PUSH "John"
STORE %1
; `return_true` function
JMPL function_return_true
JMPF 3
; `name` variable
LOAD %1
CALL print
JMP 2
PUSH "no"
CALL print
RET