Files
china-dictatorship/hello-world/a/Assembler Vax Ultrix.asm
Ciro Santilli 3e40ac19d9 hello-world
2021-03-24 00:00:01 +00: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