added strlen, strncpy and realloc
[rrq/rrqforth.git] / machine.asm
index 6a133a170503eef5ea54178e484d115d39904ae2..86b1e7f1aac47f5276c6a3019dcb917b02f9febf 100644 (file)
@@ -74,6 +74,7 @@ macro popr x {
 
 macro next {
        lodsq                   ; mov rax, [rsi] + add rsi,8
+       call p_calltrace_DFA
        jmp qword [rax]         ; goto code of that FORTH word (64 bit jump)
 }
 
@@ -97,9 +98,12 @@ macro ENDFORTH {
 ;;; ========================================
 ;;; The DOFORTH lays out a single FORTH call
 
-macro DOFORTH label {
+macro DOFORTH [label] {
+common
        FORTH
+forward
        dq label
+common
        ENDFORTH
 }