diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-16 19:20:28 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2020-04-16 19:20:28 +0200 |
commit | faf716bd97c8d6c5429a5d8edc3ad1b59e430d66 (patch) | |
tree | 7df1bfd837936191b4de3093c88c2f85516cb239 | |
parent | Better read function (diff) | |
download | lowbat-bsd-faf716bd97c8d6c5429a5d8edc3ad1b59e430d66.tar.gz lowbat-bsd-faf716bd97c8d6c5429a5d8edc3ad1b59e430d66.tar.bz2 lowbat-bsd-faf716bd97c8d6c5429a5d8edc3ad1b59e430d66.tar.xz lowbat-bsd-faf716bd97c8d6c5429a5d8edc3ad1b59e430d66.tar.zst lowbat-bsd-faf716bd97c8d6c5429a5d8edc3ad1b59e430d66.zip |
No need to atoi, atoi is bloat
-rw-r--r-- | asm/jo_f_status.asm | 5 | ||||
-rwxr-xr-x | lowbat | bin | 14832 -> 14720 bytes |
2 files changed, 2 insertions, 3 deletions
diff --git a/asm/jo_f_status.asm b/asm/jo_f_status.asm index c4f517c..04fc563 100644 --- a/asm/jo_f_status.asm +++ b/asm/jo_f_status.asm @@ -19,7 +19,6 @@ section .text extern system - extern atoi global jo_f_status jo_f_status: @@ -41,8 +40,8 @@ jo_f_status: mov rdi, rax mov rax, 0x6 syscall - mov rdi, rsi - call atoi + movsx rax, byte [rsi + 0x0] + sub rax, 48 retq err: Binary files differ |