mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-28 08:16:31 +00:00
5514ca2e8a
No more .Z double searching Removed ASCII 5 cursor from all files
14 lines
126 B
HolyC
Executable file
14 lines
126 B
HolyC
Executable file
asm {
|
|
|
|
HELLO: DU8 "Hello, World!\n",0;
|
|
|
|
_TEST::
|
|
PUSH HELLO
|
|
CALL &PutS
|
|
RET
|
|
};
|
|
|
|
_extern _TEST U0 HelloWorld();
|
|
|
|
|
|
HelloWorld;
|