GitHub_collection_hello-world/a/Assembler Vax Ultrix.asm
2021-05-08 13:33:04 +12:00

14 lines
134 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