GitHub_collection_hello-world/a/assembler_vax_ultrix.asm
2018-08-22 01:37:32 -03:00

14 lines
135 B
NASM
Executable File

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