-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fae1675
commit fae1292
Showing
3 changed files
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
section .data | ||
format db "%d", 10, 0 | ||
|
||
section .text | ||
extern printf | ||
global _start | ||
|
||
_start: | ||
xor ecx, ecx | ||
|
||
start_loop: | ||
inc ecx | ||
cmp ecx, 1000000000 | ||
jl start_loop | ||
|
||
mov rdi, format ; rdi: first argument | ||
mov esi, ecx ; esi: second argument | ||
xor eax, eax ; number of vector registers used is 0 | ||
call printf | ||
|
||
; exit | ||
mov eax, 60 ; system call number for exit | ||
xor edi, edi ; exit code 0 | ||
syscall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters