SYM-1 6502 mini sbc

Bit of History

Once upon a time .. I had a SYM-1 sbc board that I played around with. Wonderful microcomputer for its era (early 1980's). Like most people due to non use and lack of interest I give that micro away. Since my recent eagerness to dabble with some of the older micros .. I had a go at trying to rebuild the SYM-1 to a reasonable  design so I can use most of the SYM-1 features. Having a 6502 chip and a 6532 peripheral chip, I had most bits to be able to create a minimal system to say run the SYM-1 Supermon 1.1 monitor. Following is a prototype that I got working (must admit after some testing time) which is minimal in design in having basically 5 main chips and TTL-USB adapter for comms to a PC. This project is ongoing where I have also reproduced (to a reasonable degree) an imitation keypad similar to the original one from individual pcb type push button keys. Where possible I used particular IC's (like GAL's) to minimise the construction and size of the design.

Prototype Board

It mainly consist of the 6502 chip, 6532 peripheral chip, 2732 EPROM for Monitor, 2K 6116 Ram chip and 24pin Atmel GAL chip to provide some of the decoding and interfacing. Additional things on the board are 14pin 1Mhz crystal and an expansion socket to be able to interface to display/keypad. Flying wires are leads to  a TTL to USB converter that connects to USB port of a PC. Monitor code is original version 1.1 that you can get from 6502.org. Memory map is original as per SYM-1 board for the monitor, 6532 chip and 2k RAM from 0000-07FF. Gal chip used is Atmel ATF22V10CQ/CQZ. No particular reason for this one ..  but you can easily get them from RS components and not that expensive. I will provide the .pld and .jed file for the code to program these. See notes later on.Prototype board was constructed using a vero type board with a bank of tracks to place the IC's. Wiring was soldered point to point using  wire wrap wire. After initial mounting of the components and testing for shorts etc the board was ready for use. When powered up the board draws about 220mA. See pic below.

Parts for construction

If you are an old micro buff you probably have some if not most parts to construct this mini board. In case you don't here is few suggestions for major parts.

Circuit Design

It basically follows from the original  SYM-1 schematics, with simplification of decoding logic with a PLD chip. For minimal system you would need at least a Monitor program, some RAM and an I/O comms. Simplest would be to have RS232 type comms that you can connect to a PC and communicate to the board via terminal type program. So in that case from original design, 6532 chip did the job of communication via pins 16 and 19 to RS232 type interface. Since I was trying to use TTL to USB interface I did not have much success in interfacing the board to the PC. It wasn't till I actually built an additional keypad to connect to the main board and played around with that I figured out the interface and comms settings. The final comms configuration involved using inverter gates for input and output to serial port (via PLD chip), and the following serial settings on comms port:

Original notes and references to RS232 on SYM-1 refer to 3 stop bits .. which confused me initially .. hence it took a while to figure out what works properly.

Schematic and component functions

Following is a schematic of the design. It is using Diptrace software. Note I use point to point schematic (pin ID connections). It does reduce wires ..but for some people it gets bit harder to follow.

Caution: As with any circuit diagrams it is up to you to recheck and make sure it is OK before proceeding to any construction. To best of my ability this is representation of what I have used. I've followed other circuit diagrams on the web, only to find some info was wrong. So please check pin outs (especially against datasheets) to make sure all connections are correct. If there is any errors please email me.

Download Schematic

Looking at the schematic here is bit of explanation of some of the component functions:

PLD Function

Atmel PLD is used to provide address decoding and 3 gate inverts for A9 and serial signals. For more info see Atmel website and WinCupl software.

The code for the PLD is shown below:

Name            SYM-1;

Partno          0001;

Revision        4k Mon, 2kRam, 6532 Comm;

Date           6/2/15;

Designer        mc;

Company         mcoz;

Location        oz;

Assembly        manual;

Device          g22v10;

/** Inputs **/

pin [1..6] = [a10..15] ;

pin 7 = phi2;

pin 8 = rnw;

pin 9 = a9;

pin 10 = crtout;

pin 11 = crtin;

/** Outputs **/

pin 19 = !nr;

pin 20 = !nw;

pin 21 = !cs6532;

pin 23 = !csrom;

pin 22 = !csram;

pin 18 = !na9;

pin 16 = !ncrtin;

pin 17 = !ncrtout;

/** Declarations and Intermediate Variable Definitions **/

field ioaddr= [a15..9];

cs6532_eqn   = ioaddr:[A4XX..A7XX];   

csrom_eqn   = (ioaddr:[80XX..8FXX])#(ioaddr:[F0XX..FFXX]) ; 

csram_eqn   = (ioaddr:[00XX..07XX]) ;

/** Logic Equations **/

ncrtout=crtout;

ncrtin=crtin;

na9=a9;

nr =phi2&rnw ;

nw  = !rnw&phi2 ;

cs6532 = cs6532_eqn ;

csrom = csrom_eqn;

csram = csram_eqn;

The pinout for PLD is as follows:

View pld file

Download jed file

Testing the board

Obviously have the board connected to the PC and use appropriate comms software like Hyperterm (on XP) or RealTerm set to appropriate setting. Also set CAPS ON. (reduces errors). If all OK after pressing the RESET button ...press the "Q" key on keyboard . The response should be "." single dot  ...where you can give monitor commands after that. Following is snapshot of sample program that is given in Reference manual for SYM-1 that adds two numbers together from memory locations 200 and 201 and places result in 202. You can see that 202 changed from 0 to C6 which is = C1+05.

From this point on you can explore all the monitor commands. Save and Load will not work as provision is not made in this design for saving code to cassette tape. So another way of saving and loading the machine code is via SP an LP (paper tape commands).

Saving and loading code (via terminal)

Refer to paper tape format info in SYM-1 Reference manual (page D-1). So for example to save above code you would issue command

SP 200-210 

 and before you press <CR>, set terminal program to capture file mode.. which will save text as it is output to the terminal.

Start capture mode and press <CR>

the listing should follow.. once character output had stopped ..Stop the capture ...

To see what is captured open the captured file with Notepad..it should look like something like this ...

Delete the space in first line and replace the "." in the last line with ";00". This creates the correct file to upload.

To retrieve the code type in

LP <CR>

and send the captured file as text using terminal program ..What you might need to do is delay the character and LF output to about 20ms so the board does not get swamped with incoming characters from the PC serial port. You can adjust the delay to smaller value till the sending of file stops working properly. 20ms+ is usually a safe bet.

Picture above shows loading of the file, listing  the code, running it and then listing the result of the addition program. So there you are ..plenty of things to be able to examine ..with minimal system similar to the original SYM-1 board.

I/O via 6532 PIA chip

Ok If you are to use the mini board with RS232 interface only (that is ... with NO keypad/display) then the port A  (address A400) is free to use for any I/O control. The DDRA (address A401) can be set up for output or input. As a simple example using SYM monitor we can set the DDR to output on all eight PA pins (set DDRA to FF). Then changing the value of  I/O Register A (A400 address) from FF to 00 will toggle output on the port A  (pins 8-15) from high back to low.

If you want to use the port A as an input then set appropriate bits to 0 in DDRA. Image below shows a crude example of control via Monitor commands. Writing machine/assembly code for more complex task is possible and make the board useful as a micro controller.

Running mini @9600 Baud

It is possible to run the mini board @ 9600. Suggestions have been obtained from 6502 pages website, where  following address have been changed:

8AE9 08 --> EA         '   NOP

8AEA 48 --> 60          '  RTS

8AB0 0B -->0A           ' CHANGE NUMBER OF STOP BITS

Changed binary file Supermon 1.1 file  for 9600 baud can be downloaded from here. Please note as suggested, once this is changed it might not be possible to run the board at different speeds.

 A nice video on operation of the reset sequence of the microprocessor ..