From fbde29458ada2d5943144e3b796339cee43474f3 Mon Sep 17 00:00:00 2001 From: Jonas Hvid Date: Sat, 23 Nov 2019 17:07:01 +0100 Subject: [PATCH] Rename TYPE to TELL This is what jonesforth uses, so we'll use the same convention. --- main.asm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.asm b/main.asm index af84a66..4ddb267 100644 --- a/main.asm +++ b/main.asm @@ -155,7 +155,7 @@ READ_WORD: ; 400170 ;; Takes a string (in the form of a pointer and a length on the stack) and ;; prints it to standard output. -TYPE: +TELL: dq .start .start: mov rbx, rsi @@ -213,8 +213,8 @@ MAIN: dq READ_WORD dq LIT, you_typed_string dq LIT, you_typed_string.length - dq TYPE - dq TYPE + dq TELL + dq TELL dq NEWLINE dq HELLO dq TERMINATE -- 2.39.2