Archived
1
0
This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.

55 lines
613 B
NASM
Raw Normal View History

2022-11-06 13:51:51 +03:00
format ELF
public _start
extrn file.open
extrn file.content
extrn file.close
extrn print.str
extrn print.nl
extrn exit
2022-11-06 19:11:41 +03:00
macro nl {
call print.nl
}
2022-11-06 13:51:51 +03:00
section '.strtab'
2022-11-06 18:21:21 +03:00
filename db "makefile", 0
2022-11-06 19:11:41 +03:00
error db "An error occurred while opening the file", 0
2022-11-06 13:51:51 +03:00
section '.bss' writeable
file_ rd 1
section '.text' executable
_start:
2022-11-06 18:21:21 +03:00
push filename
call file.open
pop eax
2022-11-06 19:11:41 +03:00
cmp eax, 0
jne @f
push error
call print.str
nl
call exit
@@:
2022-11-06 18:21:21 +03:00
mov [file_], eax
push dword [file_]
call print.str
2022-11-06 19:11:41 +03:00
nl
nl
2022-11-06 18:21:21 +03:00
push dword [file_]
call file.content
call print.str
2022-11-06 19:11:41 +03:00
nl
2022-11-06 18:21:21 +03:00
push dword [file_]
call file.close
call exit