mirror of
https://github.com/Fennix-Project/Lynx.git
synced 2025-05-25 22:14:44 +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
|