Fixed jump...

This commit is contained in:
xolatile
2024-07-20 19:32:19 -04:00
parent f795eb80c7
commit 8af0ae17cd
2 changed files with 6 additions and 27 deletions

View File

@ -1,11 +1,7 @@
format ELF64 executable 3
segment readable executable
entry main
heyo:
nop
heyo: nop
mov eax, 1
nop
mov edi, 1
@ -16,9 +12,7 @@ heyo:
nop
syscall
ret
cyaa:
nop
cyaa: nop
mov eax, 1
nop
mov edi, 1
@ -29,9 +23,7 @@ cyaa:
nop
syscall
ret
main:
nop
main: nop
mov r10d, 11223344h
nop
call heyo
@ -46,8 +38,6 @@ main:
mov edi, 60
syscall
nop
segment readable writable
heyo_data: db "Heyo world!", 10
cyaa_data: db "Cyaa world!", 10