barf
made it barf all the characters but i fucked up and it doesnt stop idk why tho
This commit is contained in:
parent
06fca94a96
commit
f5654816e8
3 changed files with 29 additions and 10 deletions
BIN
helloworld/hello
BIN
helloworld/hello
Binary file not shown.
|
@ -1,16 +1,35 @@
|
||||||
section .data
|
section .data
|
||||||
text db "Hello World",10
|
text db 65,10
|
||||||
|
fuckvalue db 255
|
||||||
|
sleeplength db 255
|
||||||
|
sleepcounter db 0
|
||||||
section .text
|
section .text
|
||||||
global _start
|
global _start
|
||||||
|
|
||||||
_start:
|
_start:
|
||||||
mov rax, 1
|
mov r8, [fuckvalue] ; put the shit in the register for later
|
||||||
mov rdi, 1
|
mov r9, [text]
|
||||||
mov rsi, text
|
|
||||||
mov rdx, 14
|
|
||||||
syscall
|
|
||||||
|
|
||||||
|
|
||||||
|
mov rax, 1 ;syscall 1
|
||||||
|
mov rdi, 1 ; arg 1 (stdout)
|
||||||
|
mov rsi, text ; the shit to print
|
||||||
|
mov rdx, 2 ; the length
|
||||||
|
syscall ;invoke
|
||||||
|
|
||||||
|
|
||||||
|
cmp r8, r9
|
||||||
|
je _end
|
||||||
|
|
||||||
|
;inc text
|
||||||
|
mov r9, [text]
|
||||||
|
inc r9
|
||||||
|
mov [text], r9
|
||||||
|
|
||||||
|
jmp _start
|
||||||
|
|
||||||
|
|
||||||
|
_end:
|
||||||
mov rax, 60
|
mov rax, 60
|
||||||
mov edi, 0
|
mov edi, 0
|
||||||
syscall
|
syscall
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue