added the code that doesnt work to ./monkie
This commit is contained in:
parent
86860c606f
commit
4ae491bdb5
3 changed files with 28 additions and 1 deletions
|
@ -21,5 +21,4 @@ add_executable(length length.asm)
|
||||||
add_executable(yes yes.asm)
|
add_executable(yes yes.asm)
|
||||||
add_executable(case case.asm)
|
add_executable(case case.asm)
|
||||||
add_executable(diff diff.asm)
|
add_executable(diff diff.asm)
|
||||||
add_executable(strnum strnum.asm)
|
|
||||||
|
|
||||||
|
|
28
monkie/emwhy.asm
Normal file
28
monkie/emwhy.asm
Normal 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
|
Loading…
Reference in a new issue