This commit is contained in:
julianb0 2019-05-30 12:39:24 +02:00
parent c2603b9692
commit 1331ccdff5
No known key found for this signature in database
GPG Key ID: DDF8325C95299A62
1 changed files with 18 additions and 2 deletions

View File

@ -7,10 +7,26 @@
main:
enter
mov ax0, .hw
mov ax0, .msg
call print
call exit
leave
ret
.msg = "Hello World :)\n"
;
; Exit function
;
exit:
enter
mov ax0, .msg
call print
leave
ret
.hw = "Hello World\n:)"
.msg = "Goodbye World :(\n"