From fb588483addb542240935b30555dedf199ff5df3 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 17 Jun 2023 17:04:41 +0200 Subject: Added optimizer --- sort.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sort.asm') diff --git a/sort.asm b/sort.asm index feb91cb..4d6693c 100644 --- a/sort.asm +++ b/sort.asm @@ -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: -- cgit v1.2.3