added the code that doesnt work to ./monkie

This commit is contained in:
zombie maniac 2021-09-22 02:38:12 -04:00
parent 86860c606f
commit 4ae491bdb5
3 changed files with 28 additions and 1 deletions

View file

@ -21,5 +21,4 @@ add_executable(length length.asm)
add_executable(yes yes.asm)
add_executable(case case.asm)
add_executable(diff diff.asm)
add_executable(strnum strnum.asm)

28
monkie/emwhy.asm Normal file
View file

@ -0,0 +1,28 @@
extern puts
section .data
text db "####################################################################################################",10,"####################################################################################################",10,"####################################################################################################",10,"####################################################################################################",10,"####################################################################################################",10,"####################################################################################################",10,"####################################################################################################",10,"####################################################################################################",10,"####################################################################################################",10,"####################################################################################################",10,"####################################################################################################",10
store dq 0
section .text
global main
main:
sub rsp, 8 ;enter
_setup:
xor r8, r8
mov r8, text
mov qword [store], text
mov r9, [store]
mov rdi, text
cld
call puts
_end:
add rsp, 8 ;exit
ret