RosettaCodeData/Task/Hello-world-Text/PDP-11-Assembly/hello-world-text.pdp-11
2015-11-18 06:14:39 +00:00

11 lines
140 B
Text

.globl start
.text
start:
mov $1,r0
sys 4; outtext; outlen
sys 1
rts pc
.data
outtext: <Hello world!\n>
outlen = . - outtext