1
0
mirror of https://github.com/livingcomputermuseum/pdp7-unix.git synced 2026-02-10 10:20:38 +00:00

Merge pull request #42 from philbudne/master

fix init assembly; fix as7 "rim" format
This commit is contained in:
philbudne
2016-03-10 00:13:12 -05:00
2 changed files with 3 additions and 3 deletions

View File

@@ -239,7 +239,7 @@ error:
sys exit
m1:
012; <lo>;<gi>;<n;<:;<
012; <lo>;<gi>;<n;<:;<
m1s = .-m1
m2:
<?; 012

View File

@@ -227,11 +227,11 @@ elsif ($format eq 'ptr') { # dump absolute memory in PTR binary
elsif ($format eq 'rim') { # PDP-7 Read In Mode
for my $loc ( 0 .. $#Mem ) {
if (defined($Mem[$loc])) {
punch(0200000 | $loc ); # LAC addr
punch(0040000 | $loc ); # DAC addr
punch($Mem[$loc] || 0);
}
}
punch($OUT, 0740040 ); # HLT
punch(0740040 ); # HLT
}
else {
die("unknown format $format");