Re: [Simh] tty magic(?) for talking to bootloaders?

2019-09-23 Thread Lars Brinkhoff
Kevin Handy wrote: > You may also want to look at the git repository at > https://github.com/PDP-10/its.git > to se how someone else handles this sort of thing. We use expect for interaction with the target, because we support more emulators than just SIMH. If you only use SIMH, the built-in EXPE

Re: [Simh] tty magic(?) for talking to bootloaders?

2019-09-23 Thread Tom Perrine
FANTASTIC! That's exactly the thing I needed. The rest has been ugly shell coding and weird old-school UNIX tricks (my first UNIX was PWB!). Here's an example: To configure (edit source code) and compile df.c to know about the rk disks you would normally do this: # chdir /usr/source/s1 # ed df.

Re: [Simh] tty magic(?) for talking to bootloaders?

2019-09-23 Thread Richard Cornwell
Hi, You might want to check out what I have done for the B5500 and PDP10. http://sky-visions.com/burroughs/xiii/ Are the files that will rebuild MCP XIII from source, including build jobs. The install and load TOPS 10 5.03 or 6.03 you can find the simH init files here:

Re: [Simh] tty magic(?) for talking to bootloaders?

2019-09-23 Thread Kevin Handy
You may also want to look at the git repository at https://github.com/PDP-10/its.git to se how someone else handles this sort of thing. On Sun, Sep 22, 2019 at 1:13 AM Mark Pizzolato wrote: > On Saturday, September 21, 2019 at 9:45 PM, Tom Perrine wrote: > > > Thanks! That's the boost I needed.