Added: Midas

Fixes: #566
Co-Authored-By: Lars Brinkhoff <lars.spam@nocrew.org>
This commit is contained in:
Richie Bendall 2020-04-01 05:00:16 +13:00
parent 7880dcfef1
commit 49da13c444
2 changed files with 18 additions and 0 deletions

View File

@ -101,6 +101,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Assembler Nasm Linux64](a/assembler_nasm_linux64.asm)
* [Assembler Nasm Macho64](a/assembler_nasm_macho64.asm)
* [Assembler Nasm Win32](a/assembler_nasm_win32.asm)
* [Assembler Pdp10 Midas](a/assembler_pdp10_midas.mid)
* [Assembler Tasm Dos](a/assembler_tasm_dos.asm)
* [Assembler Tms9900 Ti99 4A](a/assembler_tms9900_ti99_4a.asm)
* [Assembler Vax Ultrix](a/assembler_vax_ultrix.asm)

View File

@ -0,0 +1,17 @@
TITLE Hello World
A==1
B==2
TYO==1
START: .OPEN TYO,[.UAO,,'TTY]
.LOSE
MOVE A,[440700,,HELLO]
LOOP: ILDB B,A
JUMPE B,[.LOGOUT 1,]
.IOT TYO,B
JRST LOOP
HELLO: ASCIZ /Hello World/
END START