Apple PROM board, MEA/Apple TTY emulation update

The SCELBI PROM board is working fine and I was able to create a small program in the editor and execute pass one of the assembler with MEA. I can’t completely assemble a program and run it until I get the cassette interface built and operating. Pass two of the assembler writes the output to cassette tape. I’ll have to hold up doing a video until I can get the complete package going. My impressions of the MEA package are quite positive. It’s not as elegant as later software you might be more used to. However, considering the time frame it was made and the platform is the 8008, it’s a pretty nice package.

SCELBI PROM and extra SRAM boards cost $50 each and are available now. This recent work also confirms that the TTY board is working fine and those are available for $30.

I’ve been using an Apple IIe in 80 column mode with a bit-banged serial serial card to act as TTY emulator. However there are a couple of fairly significant issues that need to be solved before publishing this teletype replacement solution. It’s usable for me, but there are some problems. The two issues with my current Apple II TTY emulation solution are:

  • 1)The Apple II isn’t fast enough to scroll it’s screen at the same time it’s receiving data in a bit banged mode. It drops a few bits from the next character while scrolling the screen. This means that I’ll need to come up with a special designed card to support 110baud current loop with a UART. Since I’m doing a new card, I’ll consider figuring out how to add paper tape support and possibly printer support, as well.
  • 2) In 80 column mode, the screen driver doesn’t support carriage return, without also doing a line feed. In other words, you can’t move the cursor backwards to position 0 on the same line, like a real TTY would when it receives a CR. I’ll have to look into a software fix for this, but it might take sending the cursor to home and then moving it back down to the correct position on the page or something like that.
  • SCELBI running MEA

    SCELBI running MEA

    This image shows the Apple IIe acting as a TTY for the SCLEBI 8B on the left. The screen contains a small program entered with the MEA editor. The listing of the program at the top of the screen has two extra lines at the end. The “D 000 006,000 007” is an editor command that deletes lines 6 and 7. The “L” command lists the text buffer. The last two commands “P1” and “P2” are pass 1 and pass 2 of the assembler. Pass 1 shows no errors. Pass 2 writes results to cassette tape. Since the cassette isn’t installed in my system it actually does nothing. If I had a tape, pass 3 would read the object back into the system so it could be executed.

    The “E”s on the left side of the screen should be the first character of the next line, but the Apple IIe can’t scroll fast enough to be ready to receive the first character of the new line, so it receives a partial character.

    4 thoughts on “Apple PROM board, MEA/Apple TTY emulation update

    1. Yeah, Woz wrote the scroll routine for compactness and flexibility, not speed. If you find that you can avoid dropping characters by narrowing or shortening your text window, you could wedge your own COUT with a custom quick-scroll routine using a BLOAD, two POKES and a CALL. I did something similar back in the day with a Hi-Res COUT for my ][+ that allowed bold-face, italic, and underlining, inspired by Bob Bishop’s AppleVision code. My Hi-Res scroll routine was naturally kind of slow, because I was moving almost 8K at a time, but for the text screen you could do something like:
      SCROLL:
      ldy #$27
      SCR2:
      lda $480,y
      sta $400,y
      lda $500,y
      sta $480,y
      lda $580,y
      sta $500,y

      lda $7d0,y
      sta $750,y
      lda #$a0
      sta $7d0,y
      dey
      bpl SCR2

      This method is hard-coded for a 40 by 24 screen, but is significantly faster than the monitor ROM routine because it doesn’t check for window boundaries or make any calls to VTAB.

      Mike

    2. Pingback: Improved Apple Teletype Emulation « Mike's Hobby Blog

    Comments are closed.