summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2018-11-28 22:58:43 +0100
committerNao Pross <naopross@thearcway.org>2018-11-29 00:16:23 +0100
commitf8ca4c233cdea53eb3be3ee5f9b92fa50b1e5c01 (patch)
tree43262f3f4741c01a027dcd98581be5f4bfa4c26e
parentSwap bytes (endianness) (diff)
downloadbase32asm-f8ca4c233cdea53eb3be3ee5f9b92fa50b1e5c01.tar.gz
base32asm-f8ca4c233cdea53eb3be3ee5f9b92fa50b1e5c01.zip
Correct write syscall argument
-rw-r--r--b32e.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/b32e.asm b/b32e.asm
index 7f0b14a..20d7c4b 100644
--- a/b32e.asm
+++ b/b32e.asm
@@ -32,7 +32,7 @@ write_output:
mov rax, 1
mov rdi, 1
mov rsi, output_buffer
- mov rdx, 5
+ mov rdx, 8
syscall
ret