jmp qword [rax] ; Jump to the codeword of the current word
}
+;; pushr and popr work on the return stack, whose location is stored in the
+;; register RBP.
+macro pushr x {
+ sub rbp, 8
+ mov [rbp], x
+}
+macro popr x {
+ mov x, [rbp]
+ add rbp, 8
+}
+
segment readable executable
start:
+ ;; Initialize return stack
+ mov rbp, return_stack_top
+
jmp $
segment readable
+
+segment readable writable
+
+;; Return stack
+rq $2000
+return_stack_top: