GitHub_collection_hello-world/a/assembler_vax_ultrix.asm
2016-06-09 08:07:38 +01:00

14 lines
135 B
NASM

.data
hw:
.ascii "Hello World!\12"
.text
.align 1
.globl _main
_main:
.word 0
pushl $13
pushab hw
pushl $1
calls $3,_write
ret