# # hello.zasm -- Hello world for zasm # # The entry point for all zasm programs is a routine labeled _start. routine _start 0 # We can use the print instruction to print a message print "Hello, world.\n" # The ret instruction will return from _start, exiting the # program ret 0