1
0
mirror of https://gitlab.os-k.eu/os-k-team/kvisc.git synced 2023-08-25 14:05:46 +02:00
kvisc/dos/main.k

34 lines
391 B
Plaintext
Raw Normal View History

2019-05-30 12:44:56 +02:00
; The OS/K Team licenses this file to you under the MIT license.
2019-05-30 12:27:13 +02:00
; See the LICENSE file in the project root for more information.
;
; Main function
;
main:
enter
2019-05-30 12:39:24 +02:00
mov ax0, .msg
call print
call exit
leave
ret
.msg = "Hello World :)\n"
;
; Exit function
;
exit:
enter
2019-05-30 13:25:30 +02:00
break
2019-05-30 12:39:24 +02:00
mov ax0, .msg
2019-05-30 12:27:13 +02:00
call print
leave
ret
2019-05-30 12:39:24 +02:00
.msg = "Goodbye World :(\n"