mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-31 17:56:30 +00:00
15 lines
127 B
HolyC
15 lines
127 B
HolyC
|
asm {
|
|||
|
|
|||
|
HELLO: DU8 "Hello, World!\n",0;
|
|||
|
|
|||
|
_TEST::
|
|||
|
PUSH HELLO
|
|||
|
CALL &PutS
|
|||
|
RET
|
|||
|
};
|
|||
|
|
|||
|
_extern _TEST U0 HelloWorld();
|
|||
|
|
|||
|
|
|||
|
HelloWorld;
|