diff --git a/file.asm b/file.asm deleted file mode 100644 index e5c1539..0000000 --- a/file.asm +++ /dev/null @@ -1,17 +0,0 @@ -%include "src/constants.asm" - -section .rodata - -section .bss - -section .text - global fexist - -;----- fexist(*file[]) -----; -; Checks if given file exists -; Return value: 1 if file exists, 0 otherwise -; Used registers: -; rax* (ret) -fexist: - xor rax, rax -