mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-28 15:34:31 +00:00
10 lines
117 B
NASM
10 lines
117 B
NASM
; TODO
|
|
init:
|
|
mov si, LoadingText
|
|
call Print
|
|
jmp $
|
|
|
|
%include "print.inc"
|
|
|
|
LoadingText db ' Loading...', 0
|