1
0
mirror of https://github.com/PDP-10/its.git synced 2026-01-21 10:13:35 +00:00

43 Commits

Author SHA1 Message Date
Adam Sampson
1a6115e949 Fix Muddle's CLOSE not flushing the output buffer.
There were two problems here:

- The FOPEN code in 56 uses new C.DISK/C.TTY flags to keep track of the
  channel type, so it knew what to do when closing the channel. The
  TOPS-20 open code had been modified to set these, but the ITS code
  hadn't, so CLOSE was assuming all channels were network channels.

  Fix: set those flags in ODSK and OTTY, as TOPS-20 does.

- The BFCDSK flush routine had been modified to use byte pointer writes
  to write the last incomplete word for both TOPS-20 (SOUT) and ITS
  (SIOT). But on ITS, SIOT only works in unit mode, and Muddle opens
  files in block mode.

  Fix: restore the working code from Muddle 54 for writing the last
  word. The only difference is that BFCDSK can now be invoked with the
  leftover byte count (C) being zero, so it needs to check at the
  start to avoid duplicating the last word in that case.
2020-12-13 13:36:04 +01:00
Adam Sampson
3758abedbd Add MKSVFL, to generate SAV FILE and FIXUP FILE.
These two databases contain pure code routines that Muddle images can
refer to. We don't currently have whatever tool was used to maintain
them, so this is a MIDAS program that creates and populates them.

SAV FILE includes some stubs for functions in the LSRTNS and MUDDLE
libraries -- these are the functions that the existing Muddle 54 Zork
images need.

For the FIELD function in LSRTNS, returning FALSE is equivalent to the
user not being found. I have no idea what C-FCN in MUDDLE is for, but
very early Zork calls it after a command is entered, and seems happy
enough with it doing nothing.
2020-09-14 11:28:51 +01:00
Adam Sampson
81f1297d3a Use a second XFILE to patch/initialise Muddle 56.
Previously the first XFILE printed out some commands to run after STINK
had completed, which is awkward if you're building Muddle repeatedly.
This automates the second half of the build process.
2020-09-14 11:28:51 +01:00
Adam Sampson
5579181af1 After initialisation, save TS MUD56, not TS MDL56.
Lars has found a couple of examples of TS MUD54 files, and they're the
initialised version (with references to internal functions filled in,
etc.). TAA's ZORK launcher also expects TS MUDxx to be the initialised
version. So it appears that the ITS version didn't generate TS MDLxx.

(Why does the initialisation process write out TS MUD56, then, if you're
only going to pdump the result over it? Because the last step in
initialisation is to invoke the GC, and getting back from the GC to the
interpreter requires mapping pages back in from the executable.)
2020-09-14 11:28:51 +01:00
Adam Sampson
366665e77a Fix wrong encoding of \r in Muddle 56 source.
Found from comparison with a TS MUD54 binary. The Muddle 56/106 source
came from TOPS-20 originally, and it had been extracted with newline
conversion but not ITS encoding.

Most of these are cosmetic, but there are a couple of VALRET strings
with embedded \rs -- including the one used to exit initialisation.
So successful initialisation now finishes with a *, rather than opening
a random location.
2020-09-14 11:28:51 +01:00
Adam Sampson
5ed3534528 Install STINK 121T as MUDSYS;TS STINK, and use it.
This replaces the existing MUDSYS;STINK 2 that was installed as TS
STINKM. The bad-EXPUNGE patch in there is no longer needed now Muddle is
built with MIDAS 73.
2020-08-31 11:13:58 +01:00
Adam Sampson
26c6e4faa2 Re-apply a subset of the ITS Muddle 56 fixes.
Most of these are the same as before. For UUOH, I've taken the fixed ITS
conditionals from uuoh.mid.181 (16th March 1981). For MAPPUR, I've put
the Tenex conditional around the whole of the segment-switching code
since none of it is needed on ITS.

Note in particular that the BOT patch is no longer needed -- this
version of Muddle works happily with the pure region at 700000.
2020-08-26 21:26:02 +01:00
Adam Sampson
a7399d0f9a Revert MUDSYS to match Muddle 106 source files.
Looking at the backup dates for files in <mdl.int>, mdl106.exe is from
20th January 1981, whereas some of the source files are from a couple of
years later. Revert to the last version prior to 20th January 1981 -- in
every case, this was the earliest revision that was kept in <mdl.int>.

This undoes the changes that we'd previously made to these files, many
of which are no longer necessary now that we're using MIDAS 73.
2020-08-26 21:26:02 +01:00
Adam Sampson
72b2519a7b Build Muddle with MIDAS 73.
This is the version of MIDAS that was being used at the time of Muddle
106 in 1980.
2020-08-26 21:26:02 +01:00
Adam Sampson
c5f94161d3 Adjust link order.
This matches a TS MUD from 1977, and is the same as TS MUD54 with the
addition of SGC. It's nearly the same as the Tenex order we had already.

There are a few differences between 54 and 56:

- CONST is new in 56;
- Three source files in 54 were merged into others in 56: TENTAB into
  READER, FLOATB into PRINT, and CHAN into FOPEN;
- DISPLA, which went between CREATE and SAVE in 54, is missing in 56.
2020-08-26 21:26:02 +01:00
Adam Sampson
3bf7f848c5 Tell STINK to keep symbols for all objects.
This matches TS MUD54 from 1977, and makes debugging easier.
2020-08-26 21:26:02 +01:00
Adam Sampson
86ef0e2ff9 Call Muddle objects BIN rather than REL.
This matches names recorded in MUDSYS; from 1977. Using BIN rather than
REL is a characteristic of early MIDAS.
2020-08-26 21:26:02 +01:00
Lars Brinkhoff
dfd0e117ce Move MIDAS 324 to MIDAS. 2018-09-14 06:47:09 +02:00
Adam Sampson
3122c71eb2 Fix high core purification.
The PURIMP routine splits the page map into three parts: writable data
at the bottom, a large gap in the middle (which the GC will manage
later), and read-only code/data at the top. There's one CORBLK call for
each of these.

The final call, which gave pages BOT/2000 to 400 as the range, failed
with %EROPG when it hit the first unmapped page after the end of the
pure data. Experimentation shows that, at least with current ITS, this
is how CORBLK normally behaves.

Fix by calculating the final page from RHITOP rather than assuming 400.
2018-04-25 20:47:04 +01:00
Lars Brinkhoff
3cc1c13c38 Build script for Muddle and tools.
The MDL 54/104 and 55/105 manuals give the name SYS:TS MDL for the
interpreter, and a comment in MAIN says it was TS MUDDLE, so install
links for both.
2018-04-25 09:32:25 +01:00
Adam Sampson
b1f3c13826 Disable PURIMP's last call to CORBLK.
This is trying to make pages from BOT to the end of memory pure, but it
fails on current ITS, even if you adjust the end of the range to match
RHITOP.
2018-04-25 09:32:25 +01:00
Adam Sampson
6de007fe26 Make the pure region start at 600000.
On ITS, ILOOP in INITM fails because it runs out of address space;
it overruns by about 2000 words. There's a comment in MUDDLE suggesting
that BOT was originally 600000, so move it back to there (although we
could get away with a higher value if necessary in the future).

On TENEX, TXPURE would be used instead.
2018-04-25 09:32:25 +01:00
Adam Sampson
414c665700 Fix TVBASE assertion.
This is checking whether the transfer vector has overflowed the
compile-time space allocated for it -- but the test is backwards, so the
.LOP .VALUE always fires.
2018-04-25 09:32:25 +01:00
Adam Sampson
1d8c894752 Add ASSEM XFILE and MUD56 STINK.
These are analogous to TENEX's ASSEM ALL and MUD105 STINK.

This is version 56 for ITS, because the TENEX binary claimed to be
version 106, and the 54/104 and 55/105 manuals suggest that the ITS
version number tracked the TENEX one. Zork tests whether ,MUDDLE is less
than 100 to see if it's on ITS.
2018-04-25 09:32:25 +01:00
Adam Sampson
2ce999ebd2 Fix two (harmless) incorrect EXPUNGEs.
DOTYPS doesn't exist anywhere. NUMSTA is a typo for NUMSAT.
2018-04-25 09:32:25 +01:00
Adam Sampson
7c55ae06b2 Add a dummy control bits arg to the TTY open call.
Recent MIDAS complains about the DOTCAL macro adding SETZ to the name
pointer (which is effectively a global as it's in a distant CONSTANTS
section).
2018-04-25 09:32:25 +01:00
Adam Sampson
32def4d04b Only add NTTYPE and CLRSTR to the squoze table on TENEX. 2018-04-25 09:32:25 +01:00
Adam Sampson
6b0d849f94 Add %XUNA and %XJNA, which MUDITS uses. 2018-04-25 09:32:25 +01:00
Adam Sampson
5a75505e8b Avoid collision with .FATAL, DMOVE and DMOVEM.
Newer MIDAS defines all of these itself; Muddle wants its own
definitions.
2018-04-25 09:32:25 +01:00
Adam Sampson
d88315865a Use .MCALL instead of MCALL for complex args.
MCALL tries to make its second arg global, which doesn't work when it's
an expression.
2018-04-25 09:32:25 +01:00
Lars Brinkhoff
7c877e3cbc Fix typoed label. 2018-04-25 09:32:25 +01:00
Adam Sampson
93da8b9227 Fix TERMIN problems.
There were two extra TERMINs, one of which was misspelled. Newer MIDAS
checks these more strictly.
2018-04-25 09:32:25 +01:00
Adam Sampson
6f99463f9a Fix ,, where , was intended. 2018-04-25 09:32:25 +01:00
Adam Sampson
405bda7f89 Add missing .GLOBAL for NOATMS. 2018-04-25 09:32:25 +01:00
Lars Brinkhoff
7ab2f2a441 Increase symbol table size for some files. 2018-04-25 09:32:25 +01:00
Lars Brinkhoff
ecc2c2ef42 Build for ITS, and fix broken ITS/TENEX conditionals. 2018-04-25 09:32:25 +01:00
Adam Sampson
6a4633dcc0 Ignore EXPUNGE for nonexistant symbols in REL files.
Most versions of MIDAS emit a 76 directive for each EXPUNGE, even if the
symbol being EXPUNGEd didn't exist. However, STINK treated a 76
directive for a symbol it didn't know about as an error.

Make it ignore the directive instead, skipping the next word to stay in
sync.
2018-04-25 09:32:25 +01:00
Adam Sampson
f5dfd38f16 Build STINK for ITS, fixing broken ITS/TENEX conditionals. 2018-04-25 09:32:25 +01:00
Adam Sampson
f5e54fd700 Define the right symbol at the start of a CONSTANTS area.
Linking Muddle showed various unresolved symbols of the form
"$   42". These are used by MIDAS when it wants to refer to something in
a CONSTANTS area, but doesn't know the location at assembly time (for
example, because it's the other side of a LOC X where X is a global).
At the start of a CONSTANTS area, MIDAS defines this symbol as .;
however, it was defining it with the wrong name.

There's a special case in RPWRD1 to output references to these symbols
as squoze rather than symbol table numbers, but the code in CNST2 that
defines the symbol was using PDEFPT, which always outputs the number.
Make it output the squoze instead.
2018-04-25 09:32:25 +01:00
Adam Sampson
1bb6ced04c Don't split two-word directives across blocks.
When:

- MIDAS is writing a "standard data" block to a REL file;
- it wants to write a 76 (local-to-global/rename/expunge) directive,
  which needs two words of data;
- and there's only one word of space left in the block;

it wrote the first one to the current block, and the second word to the
start of the next block. STINK 1/201 doesn't understand this, and treats
the second word as codebits for the next block, misinterpreting the
directives for that block; this results in missing symbols or junk being
loaded into memory.

For other two-word directives, MIDAS sets the IRCONT flag for all words
except the last one, to prevent the block from being flushed until the
directive is complete. Do the same for 76 directives.

Also fix CNSTA, which unset IRCONT *after* its last word; this was
probably harmless because it will be the first directive in a block so
can't be split.
2018-04-25 09:32:25 +01:00
Adam Sampson
c17ee29314 Understand XMOVEI.
MIDAS 323 doesn't know this opcode by default, but the Muddle source
uses it in ATOMHK and MAIN. Add it to the synonym table.
2018-04-25 09:32:25 +01:00
Lars Brinkhoff
bd0e4ace54 Fix .ALSO syntax, to build with current MIDAS. 2018-04-25 09:32:25 +01:00
Adam Sampson
fae6ae4b56 Import MIDAS 323.
It looks like Muddle was historically built with an early MIDAS: the
1973 Muddle source included a copy of MIDAS 73, and the MDL 106
source included a TENEX MIDAS binary of similar vintage.

Later versions of MIDAS have differences in their REL output which break
Muddle's low/high-segment linking. We don't have source for MIDAS 73.
MIDAS 323 is the latest version we have that supports this scheme
correctly, at least with Muddle's version of STINK.
2018-04-25 09:32:25 +01:00
Adam Sampson
c49c864a1d Encode the MUDSTR constant correctly for ITS evacuate format.
The string is padded with ^? characters, which are skipped when it's
printed.
2018-04-25 09:32:25 +01:00
Adam Sampson
a81db26a7a Rename to ITS conventions.
MIDAS and Muddle source get version numbers (as in the 1973 Muddle
source); the build files don't.
2018-04-25 09:32:25 +01:00
Adam Sampson
8eb73e1b95 Remove old versions of source files. 2018-04-25 09:32:25 +01:00
Adam Sampson
4704058f77 Remove TENEX binaries and temporary files.
Two things to note: the compiled Muddle was called MDL106.EXE, and the
MIDAS binary was earlier than MIDAS 76.

I've left the TENEX build scripts and TENEX-specific files in place;
the TENEX/ITS code is conditional, so it should be possible to build the
code on TENEX/TOPS-20 in the future.
2018-04-25 09:32:25 +01:00
Lars Brinkhoff
30ab750df7 Twenex MDL 106 files. 2018-04-25 09:32:25 +01:00