X-Git-Url: https://git.rrq.au/?a=blobdiff_plain;f=stdio.asm;h=1773da2d3b76c9e98cdf5d3aa74872fd2f90fc19;hb=bf8a7c713298730826f02c4ece9f4735fcee2e4b;hp=7cf148dfca09e287db5bd7675efa64cd66524041;hpb=cf11109f96ba17c7c7a74a8fd3c31c985b8938d1;p=rrq%2Frrqforth.git diff --git a/stdio.asm b/stdio.asm index 7cf148d..1773da2 100644 --- a/stdio.asm +++ b/stdio.asm @@ -195,3 +195,13 @@ p_emit_buffer: dq 0 popr rsi next + WORD p_nl,'NL',dovalue + ;; ( -- c ) + ;; Pushes a newline character on the stack + dq 10 + + WORD p_sp,'SP',dovalue + ;; ( -- c ) + ;; Pushes a space character on the stack + dq 10 +