zombie-core-utils/case.asm

42 lines
820 B
NASM
Raw Normal View History

extern puts
2021-09-19 12:18:33 -04:00
%include "../inc/case_func.inc"
global case_func
2021-09-18 06:35:54 -04:00
section .data
tempstore db 0
argument_error db "Argument Error!... either too many args or too little please fix", 0
section .text
global main
main:
2021-09-15 10:15:54 -04:00
sub rsp, 8 ;enter
cmp rdi, 2
jne _argument_error ;if its not exactly 2 then exit
add rsi, 8 ;get the second argument because the first argument is the path
mov r8, [rsi] ;this block here fenagles the pointer into memeory instead of a register
mov [tempstore], r8 ; i also really with i had the abilty to mov [thing1], [thing2]
mov rdi, [tempstore]
call case_func ;case_func modifies the text you send it
mov rdi, [tempstore]
cld
2021-09-15 10:15:54 -04:00
call puts ;this is the puts way of printing a string
_end:
2021-09-15 10:15:54 -04:00
add rsp, 8 ;exit
ret
_argument_error:
mov rdi, argument_error
cld
call puts
jmp _end