[Simh] PDP-8 KL8E XON/XOFF

Mark Pizzolato Mark at infocomm.com
Mon Jun 6 10:28:03 EDT 2016


Hi Bill,

Based on 4.0-0 Beta isn’t very specific since it has been around with many changes for quite a while.  I last interacted with Oscar at least a year ago maybe more…  Can you give me a pointer to the source you’re working with so maybe I can zero in on when in the commit sequence it was forked.

In any case, what are you using for serial port hardware on the Raspberry Pi?
What version of the Pi are you working with?

There has been some work synchronizing simulated serial port speeds with original baud rates.  As I recall, (without looking too deeply), this mostly was done to facilitate input data rate handling since, when the simulated serial ports are connected via telnet, a user could drop data into a telnet session (via cut and paste) that would arrive at the simh side of the simulator in a single packet which could then overrun the input capabilities of the simulated hardware/OS.  When this was done I really didn’t look at the serial port case.

If output is going to a serial port, then the goal of the simulated serial port layer should be to act as a wire that directly connects the simulated system to the serial port WITHOUT the buffering you are seeing.  This is a bug in the simh framework.  Please create an issue at https://github.com/simh/simh/issues including what’s been said in this thread so far and follow up with the answers to the above questions there.

Thanks.


-          Mark

From: William Wuttke [mailto:wcwuttke at att.net]
Sent: Sunday, June 5, 2016 7:07 PM
To: Mark Pizzolato <Mark at infocomm.com>
Cc: simh at trailing-edge.com
Subject: Re: [Simh] PDP-8 KL8E XON/XOFF

Hi Mark,

I’m using the simh PDP-8 code that was distributed by Oscar Vermeulen for the PiDP-8, which is based on 4.0-0 Beta.

The console is set as follows:  set console serial=ser0;110-8n2. (Raspberry Pi hardware serial port)

The problem is that there is buffering going on somewhere between the simh PDP-8 and the serial port. (It's nice to have the PiDP-8 front panel to help troubleshoot problems.) If I do a directory listing or type a long-ish file, I can see the accumulator LEDs blinking for only a few seconds, but the printout takes minutes. This indicates to me that simh/PDP-8 is pushing the bytes out as fast as it can into a buffer somewhere. The data trickles out of the buffer at a leisurely 110 baud. By the time I see that I don’t want to finish printing what I started, a Control-C won’t do anything. I was able to at least put a bandaid on things by setting the tto_unit (pdp8_tt.c) wait value to where it slows down the data being pushed into the buffer to a rate approximating 10 characters per second. The accumulator LEDs now blink synchronized with the data, which is what I was looking for.

To me, the simulator should be able to simulate this, but where is the buffering and how can we eliminate it? Or do we want to? You would never even notice that this is a “problem” unless you have a front panel. If we are working towards having front panels of one kind or another (PiDP-8, blinkenbones, etc), I would think the emulator should output the data at the correct baud rate, not relying on buffers somewhere to take up the slack.

Regards,

Bill

On Jun 5, 2016, at 6:18 PM, Mark Pizzolato <Mark at infocomm.com<mailto:Mark at infocomm.com>> wrote:

Hi William.

Are you using the simh PDP8 code from https://github.com/simh/simh?

What does you configuration file look like?

With the latest code you should be able to connect the serial port the ASR33 is wired to to the simulator at its natural 110 baud rate.   Given that, doesn’t your problem go away?

-          Mark

From: Simh [mailto:simh-bounces at trailing-edge.com] On Behalf Of William Wuttke
Sent: Sunday, June 5, 2016 5:54 PM
To: simh at trailing-edge.com<mailto:simh at trailing-edge.com>
Subject: [Simh] PDP-8 KL8E XON/XOFF

Problem:

When using a teletype on a serial port, XOFF will stop a directory listing (and others), but once that happens, the PDP-8/simh will no longer respond to keyboard input. I’m using a Model 33 ASR on a PiDP-8 (raspberry pi) hardware serial port.

Investigation:

All documentation says XON and XOFF should work from the console. Well, it does and it doesn't.

If using "screen", it works, but apparently the XON/XOFF functionality lies somewhere other than in the KL8E handler. The typing stops when XOFF is sent. Then when XON is sent, you can see some buffered text appear on the screen fast, then the typing slows down to normal speed. (I set the tto unit wait value to 20000 to closely approximate real 110 baud serial output. Otherwise, a directory listing gets buffered up an about 3 seconds, but takes 2-3 minutes or longer to print out on the teletype. This also allows me to Control-C to quit the listing.) It looks like "screen" is buffering the text.

If using the teletype, XOFF stops the typing, but XON does nothing - the machine is locked up in a loop at this point with 7623 in the accumulator (it works as coded). Looking at the KL8E handler, the tty check routine uses KRS to read a character, never resetting the keyboard flag. Apparently, since the KL8E had no buffering, if an incoming character is not read, it would be overwritten by the next incoming character, clearing the keyboard flag during the time that the character was not valid, then setting it after the character was assembled into the keyboard buffer. It looks like the KL8E handler was written depending on this behavior. However, it looks like the simh tti is acting like a modern UART, buffering up the input, and moving through the buffer as characters are read. The KRS instruction is for all purposes a "peek" at the next character in the buffer, which is exactly what the tti is doing. It keeps "peeking" at XOFF (7623 - 7600), which never really gets removed from the buffer. However, it really needs a "read", to advance to the next character. At least, that is what it looks like.

Fixes?

I'm going to attempt to mod the KL8E handler to fix this, but might not have much luck since it already pretty much fills up its allotted two pages. It is filled with all sorts of assembly language trickery to fit into two pages. In my way of thinking, the simh KL8E is really “modified” hardware, and OS/8 can be easily adapted to new hardware. I think I have a fix, using KRB instead of KRS - I don’t think that using KRS was a good idea anyway, but on a real PDP-8 it would catch the XON as soon as it happened.

Or, could a mod to simh do the trick? Could the KRS be modified to act like a KRB, but just OR’ing the keyboard buffer with the accumulator instead of clearing the accumulator it first? How would this affect other PDP-8 software that relies on KRS without subsequently clearing the keyboard flag? How common is the use of KRS in this way? I guess in this day and age, trying to eliminate all the buffering going on would probably be a real pain. And, the buffering on the input actually eliminates the need use the teletype Reader Control with simh.

Does anyone have any ideas?

Regards,

Bill Wuttke

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mailman.trailing-edge.com/pipermail/simh/attachments/20160606/e1d7c071/attachment-0001.html>


More information about the Simh mailing list