From 38ab2f16dd683ac65c0567f3d7a079dcdc3edf2f Mon Sep 17 00:00:00 2001 From: Jonas Hvid Date: Sat, 23 Nov 2019 19:07:30 +0100 Subject: [PATCH 1/1] Implement word for reading numbers --- main.asm | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 60 insertions(+), 4 deletions(-) diff --git a/main.asm b/main.asm index 6356be8..f466a10 100644 --- a/main.asm +++ b/main.asm @@ -106,7 +106,7 @@ NEWLINE: ;; Read a word from standard input and push it onto the stack as a pointer and a ;; size. The pointer is valid until the next call to READ_WORD. -READ_WORD: ; 400170 +READ_WORD: dq .start .start: mov [.rsi], rsi @@ -158,6 +158,60 @@ READ_WORD: ; 400170 next +;; Takes a string on the stack and replaces it with the decimal number that the +;; string represents. +PARSE_NUMBER: + dq .start +.start: + pop [.length] ; Length + pop rdi ; String pointer + mov r8, 0 ; Result + + ;; Add (10^(rcx-1) * parse_char(rdi[length - rcx])) to the accumulated value + ;; for each rcx. + mov rcx, [.length] +.loop: + ;; First, calcuate 10^(rcx - 1) + mov rax, 1 + + mov r9, rcx + .exp_loop: + dec r9 + jz .break + mov rbx, 10 + mul rbx + jmp .exp_loop + .break: + + ;; Now, rax = 10^(rcx - 1). + + ;; We need to calulate the value of the character at rdi[length - rcx]. + mov rbx, rdi + add rbx, [.length] + sub rbx, rcx + movzx rbx, byte [rbx] + sub rbx, '0' + + ;; Multiply this value by rax to get (10^(rcx-1) * parse_char(rdi[length - rcx])), + ;; then add this to the result. + mul rbx + + ;; Add that value to r8 + add r8, rax + + dec rcx + jnz .loop + + push r8 + + next + +READ_NUMBER: + dq docol + dq READ_WORD + dq PARSE_NUMBER + dq EXIT + ;; Takes a string (in the form of a pointer and a length on the stack) and ;; prints it to standard output. TELL: @@ -217,6 +271,7 @@ DOTU: dq .start .start: mov [.length], 0 + mov [.printed_length], 1 pop rax ; RAX = value to print push rsi ; Save value of RSI @@ -277,9 +332,8 @@ DOTU: MAIN: dq docol dq HELLO - dq LIT, 1234567890, DOTU, NEWLINE - dq LIT, $ABCD, DOTU, NEWLINE - dq LIT, $1234ABCD5678EFAB, DOTU, NEWLINE + dq READ_NUMBER, DOTU, NEWLINE + dq BRANCH, -8 * 4 dq TERMINATE segment readable writable @@ -300,6 +354,8 @@ DOTU.rbuffer rq 16 DOTU.length dq ? DOTU.printed_length dq ? +PARSE_NUMBER.length dq ? + ;; Return stack rq $2000 return_stack_top: -- 2.39.2