pdp10-its-disassembler icon indicating copy to clipboard operation
pdp10-its-disassembler copied to clipboard

BLKI, or hardware read-in format.

Open larsbrinkhoff opened this issue 3 years ago • 2 comments

This is the format used by hardware read-in mode. It's started by a BLKI pointer word, and then followed by a block of words specified by that pointer. The last word in that block is the start instruction.

In effect hardware read-in does this:

  1. DATAI device,0
  2. BLKI device,0
  3. JRST @0

larsbrinkhoff avatar Apr 13 '22 18:04 larsbrinkhoff

Note that the already supported rim10 format is a special case of this. It also runs the code that was loaded, in order to execute the paper tape bootstrap which reads the rest of the tape.

larsbrinkhoff avatar Apr 13 '22 19:04 larsbrinkhoff

Reading this format is easy. However, writing needs a way to pass in the start and end of the memory region.

larsbrinkhoff avatar Apr 13 '22 19:04 larsbrinkhoff