kvisc/dos/main.k

17 lines
244 B
Plaintext
Raw Normal View History

2019-05-30 12:27:13 +02:00
; The OS/K Team licences this file to you under the MIT license.
; See the LICENSE file in the project root for more information.
;
; Main function
;
main:
enter
2019-05-30 12:37:22 +02:00
mov ax0, .hw
2019-05-30 12:27:13 +02:00
call print
leave
ret
2019-05-30 12:37:22 +02:00
.hw = "Hello World\n:)"