Skip to content

Commit

Permalink
Added Assembler Pdp11 Palx
Browse files Browse the repository at this point in the history
Fixes: leachim6#568
Co-Authored-By: Lars Brinkhoff <[email protected]>
  • Loading branch information
Richienb and Lars Brinkhoff committed Mar 31, 2020
1 parent 67d3041 commit 02b5e04
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [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 Pdp11 Palx](a/assembler_pdp11_palx.palx)
* [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)
Expand All @@ -112,7 +113,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo
* [Attache](a/Attache.%40)
* [Autohotkey](a/autohotkey.ahk)
* [Autoit](a/autoit.au3)
* [AviSynth](a/avisynth.avs)
* [Avisynth](a/avisynth.avs)
* [Awful](a/awful.yuk)
* [Awk](a/awk.awk)
* [B](b/B.b)
Expand Down
23 changes: 23 additions & 0 deletions a/assembler_pdp11_palx.palx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
.TITLE Hello World

R0=%0
R1=%1
TPS==177564
TPB==177566

.=400

START: MOV #1,@#TPS
MOV #HELLO,R0
LOOP: TSTB @#TPS
BPL LOOP
MOVB (R0)+,R1
BEQ STOP
MOVB R1,@#TPB
BR LOOP

STOP: HALT

HELLO: .ASCIZ /Hello World/

.END START

0 comments on commit 02b5e04

Please sign in to comment.