Add small constants set, exit() and tests entry/exit

This commit is contained in:
2025-07-05 01:33:33 +02:00
parent e12b8f0365
commit 3b275a6166
3 changed files with 47 additions and 0 deletions

View File

@@ -1 +1,18 @@
%include "src/constants.asm"
; core.asm
extern exit
; console.asm
; string.asm
; convert.asm
section .text
global _start
_start:
push rbp
mov rbp, rsp
sub rsp, SIZE_QWORD
leave
mov rdi, 0
call exit