1
0
mirror of https://github.com/aap/pdp6.git synced 2026-01-27 04:32:36 +00:00

been working on a new assmbler and a linker

This commit is contained in:
aap
2016-10-12 22:18:29 +02:00
parent 6311e92a7c
commit d71efecbb3
9 changed files with 1734 additions and 99 deletions

View File

@@ -1,6 +1,7 @@
P=17
TTY=120
TAC=1
TAC1=2
PDLLEN=100
@@ -15,6 +16,8 @@ SP: -PDLLEN,,PDL-1
START:
MOVE P,SP
MOVEI 0,STR
PUSHJ P,PUTSTR
PUSHJ P,GETCH
PUSHJ P,PUTCHR
MOVEI 0,"\n
@@ -27,7 +30,6 @@ PUTSTR:
MOVE 4,0 # save str pointer to AC4
PLOOP:
MOVE 0,(4) # load char
JRST 4,
AOS 4 # advance to next
SKIPN 0 # check for end of string
POPJ P,
@@ -57,3 +59,4 @@ STR:
"a
"b
"c
0