Merge pull request #333 from rdebath/master

Added VAX assembler for Ultrix
This commit is contained in:
Mike Donaghy
2017-02-12 16:16:45 -06:00
committed by GitHub

View File

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