diff options
author | Marvin Borner | 2023-06-17 17:04:41 +0200 |
---|---|---|
committer | Marvin Borner | 2023-06-17 17:12:03 +0200 |
commit | fb588483addb542240935b30555dedf199ff5df3 (patch) | |
tree | 6a9ef443f967a1d41f27d1410856d4f680f62024 /sort.asm | |
parent | 075378188e117b13d03b39b2f43726ab0a928d62 (diff) |
Diffstat (limited to 'sort.asm')
-rw-r--r-- | sort.asm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,7 +32,7 @@ end: ; uses nanosleep syscall sleep: - mov rax, TIMEOUT ; 0x424242 + mov rax, TIMEOUT mov rcx, rsi mul rcx push qword rax ; ns @@ -48,7 +48,7 @@ sleep: ; uses busy loop sleep: - mov rax, TIMEOUT ; 0x4242424 + mov rax, TIMEOUT mov rcx, rsi mul rcx .loop: |