Close
0%
0%

MicroVIP

This is a project to celebrate the 40th anniversary of the
RCA COSMAC VIP microcomputer!

Similar projects worth following
The COSMAC VIP was introduced in 1977 as a small, easy to use single board computer using the RCA COSMAC 1802 processor. It was designed by the designer of the 1802, Joe Weisbecker. The VIP is based on an earlier computer concept called the "FRED" (Flexible Recreational and Educational Device). The MicroVIP is my tribute to the original implemented entirely on a Cyclone II FPGA module. The microprocessor, RAM, ROM and PIXIE video are all implemented in Verilog.

The MicroVIP is built with an inexpensive Altera Cyclone II FPGA module that I got on e-bay.   The computer board is built with point-to-point wiring.   

The current features of the MicroVIP are:

CDP1802 Microprocessor and CDP1861 Video Controller implemented in Verilog on the FPGA

4K RAM (in the FPGA)

512 VIP ROM / 512 UT4 ROM (in the FPGA)

Hexadecimal Keypad

Speaker with single tone generator

Power, Q and Storage LEDs

RUN switch

Composite Video output  (64x32)

8 bit Input / 8 bit Output ports

UART port for USB to TTL (3.3V) adapter

16MB Serial SPI Flash module to replace the cassette tape

MicroVIP-170903b.7z

Updated version of the FPGA code with the storage LED enabled. Includes SPI serial flash support.

7-Zip - 3.55 MB - 09/19/2017 at 03:21

Download

uvip.lst

Assembly listing for MicroVIP ROM

plain - 40.47 kB - 09/03/2017 at 23:49

Download

uvip.asm

First version of the MicroVIP ROM which replaces the tape read/write with SPI serial flash read/write

plain - 15.41 kB - 09/03/2017 at 23:49

Download

vip.lst

Assembly Listing for VIP ROM

plain - 37.80 kB - 08/29/2017 at 02:47

Download

ut4v.lst

RCA UT4 Monitor listing

plain - 34.22 kB - 08/29/2017 at 02:47

Download

View all 12 files

  • 1 × Altera Cyclone II (EPC2C5T144CS) FPGA Board
  • 16 × Push button with removable cap
  • 3 × Green LED
  • 1 × SPDT Toggle Switch (PC Mount)
  • 1 × 4 pin right angle header, 0.1"

View all 18 components

  • Attempting to get a NTSC LCD monitor working

    David Hunter10/27/2017 at 00:36 0 comments

    So, I got this NTSC LCD monitor that's for a backup camera on Amazon.   It was a good price.   It seems to be much fussier regarding the video signals than a CRT.   I am still working on the FPGA modifications to get the timing right for the LCD monitor.

    I added a 2 pin header to select LCD or CRT.

    When I get more progress, I'll post something.

  • CHIP-8 is working

    David Hunter09/19/2017 at 03:13 0 comments

    I keyed in CHIP-8 from the VIP manual and saved it on the SPI flash.   Then I tried a couple of CHIP-8 programs.   One of the programs is VIP Space Intercept (pg 43 of the manual).   It works quite nicely.   I have a picture of it up in the gallery.  (I'm using my old Apple IIc monitor this time which is why the long persistence of the phosphor is seen)    I also tried VIP Wipe Off (pg 42) which also works.   

    So, I think my VIP ROM re-write is good because it works with CHIP 8 right from the manual.  The SPI flash read and write has also been working well.   It is "lightning fast" compared to a cassette tape.

    I want to check the I/O ports next and then the standard VIP operations will be complete.

  • UT4 Monitor now co-resident

    David Hunter09/04/2017 at 00:26 0 comments

    Since I had the old RCA UT4 monitor program working with the MicroVIP for initial testing, I was trying to think of a way of keeping it and maybe having some kind of dual-boot scheme. 

    Well, I figured out a way.   There is a push button on the FPGA card that can be used.  I made some changes to the FPGA code to boot the UT4 ROM if the button is pressed when coming out of reset.   Otherwise, the MicroVIP ROM will boot.

    To use UT4, connect a USB to TTL adapter (3.3V), and TeraTerm with a setting of 300bps 7N1.   Hold the push button on the FPGA card (near the programming connector) and flip the run switch to RUN.   Press <CR> in TeraTerm and the UT4 prompt (*) will appear.   

    This is a summary of the 3 commands in UT4:

    ?Maaaa cc              = display cc bytes of memory starting at address aaaa

    !Maaaa bb [bb]...    = write byte, or several bytes starting at address aaaa

    $Paaaa                   = run a program starting at address aaaa with X,P=R0

    Note, my 1802 assembler generates listing files (.lst) that are compatible with UT4.  So you just send the list file to UT4 with TeraTerm (Send File...) to load a program.

  • Cassette Tape Replacement with SPI Flash

    David Hunter09/04/2017 at 00:15 0 comments

    First off, thanks to those of you who are following and liking this project.   This is my first major Hackaday project and I'm very pleased to see it has some interest.  THANKS!

    UPDATE:

    Well, it took some time, but I got the SPI serial flash (Winbond W25Q128F) working.   The hardest part was fitting the software within the same confines as the original VIP ROM.   I also kept the subroutines in the second page (#8100) at the same addresses to stay compatible with VIP software like CHIP-8.

    This version communicates with the flash chip using a 12.5MHz SPI clock.   The data transfer is WAY faster than the 1802 bus cycles.   So, no polling is needed for SPI transfers.   Port 7 is defined for SPI I/O with the Q line connected to the chip select by setting the bits in the control register (Port 5).   This is "lightning fast" compared to a cassette tape and with 2MB of space allocated for VIP files it should be enough.   (The rest of the flash space (14MB) is being reserved for a future Tiny BASIC file system)

    The Q line driving the chip select caused some issues.   It would seem to deassert all by itself.   In debugging this, I discovered that the Q line is modified by the video interrupt by the tone timer register (R8.0).   Originally I had thought I didn't have to turn the video on and off like the original since I wasn't "bit banging" to a tape.   Well, with this discovery, I still need to shut the video off to talk to the flash and turn video back on when done.   

    The entire 4k RAM of the MicroVIP is stored in one of 512 sectors on the serial flash.   A unique "file number" is entered into the keypad like a memory address.  Up to 512 programs / memory images can be saved this way.   The file number can be thought of as the equivalent to a tape counter number.   This number needs to be recorded somewhere in a notebook because there is no directory capability.  (Just like the original VIP)

    To save a memory image to the flash:

    Press and hold C, flip to RUN, release C

    Enter the desired 4 digit file number (0000-01FF)

    Press the F key.   

    The image will be written to the serial flash under that file number

    The last address and byte will be displayed when it is finished.  (0FFF XX)

    To load a memory image from the flash:

    Press and hold C, flip to RUN, release C

    Enter the desired 4 digit file number (0000-01FF)

    Press the B key.   

    The image will be loaded from flash to memory.

    The last address and byte will be displayed when it is finished.  (0FFF XX)

    So now, the MicroVIP works like the original VIP of 1977.  The same 4 functions are available in the ROM: Memory Read, Memory Write, Flash Read, Flash Write.   And since this is 2017, the cassette tape has been replaced by a massive serial flash device.

  • Basic Operation Complete

    David Hunter08/29/2017 at 03:14 0 comments

    The basic MicroVIP is working!   Here is the status so far:

    First, I built up the basic hardware with the VIP feature set (except for the tape interface).   There are some features that can be added later.   I got the processor, RAM, ROM going using a modified version of the UT4 monitor.   I got things working in ModelSim first.  Next, I used a USB to TTL serial adapter (3.3V Prolific) to interact with the computer.   

    With UT4 and the serial port, I was able to do some basic tests.   I wrote simple programs to test the hexadecimal keypad.   I also could test the speaker.

    From there, I added the VIP ROM and video.   With some debugging using ModelSim, I got it working in hardware.

    So far, it operates as a standard VIP but with only memory read and write working.   The speaker does beep with the Q line.   The keypad is functional as well as the video output.

    Plans:

    Next, I want to get the SPI working to use the serial flash as a tape emulator.   I'm using a 16MB serial flash because it's very inexpensive ($5) and easy to acquire.   I realize for a 1977 type computer that is a near infinite amount of space.  I will also modify the VIP ROM software to use the serial flash.

    After that, I want to have CHIP-8 in RAM on power up and recreate some of the projects in the VIP manual.

    For the future, I'd like to add a Tiny BASIC and an ASCII keyboard interface

    Tools needed:

    Quartus II 11sp1 (This is the last one to support the Cyclone II)

    Altera ModelSim (comes with Quartus)

    USB Blaster (or equivalent)   I have a Terasic Blaster

    Composite Video monitor

    +5V Wall Wart (~1W) to power the Cyclone board

    USB to TTL cable (3.3V I/O)  I'm using the one from Adafruit

View all 5 project logs

Enjoy this project?

Share

Discussions

David Stoneburg wrote 10/29/2017 at 07:52 point

Love your project!  This project brings back a lot of memories!  I worked at Radio Shack at the time and got two "broken" pong games that used the 1802 family.  I desoldered everything and wire-wrapped a GP computer from their components, total 512 bytes of SRAM.  (An Individual Study project at a time when the Altair 8800 was coming out.)  I also purchased the Cosmac ELF that had S100 expansion slots, It had a total of 4K RAM if I remember correctly.  I also helped a SCUBA diving friend build a small submersible with the 1802, being CMOS it lasted longer underwater.  Ironically, Radio Shack was just coming out with their TRS-80, and I suggested to our District Manager that we set one up as a P.O.S. computer system to keep track of all those addresses we had to take down, was told it would never be done. LOL 

  Are you sure? yes | no

David Hunter wrote 10/27/2017 at 00:42 point

Here is a tip:  For loading programs, first I load in Chip 8 in VIP mode.   Then I switch to UT4 mode and load the hex file.   (You may have to modify the file to be UT4 compatible.)  After the file has been loaded, I reset back into VIP mode and check that the program is still there.  I can then store it to flash.   The VIP monitor uses upper memory so it won't overwrite a program loaded in the lower memory locations (like a Chip8 program).   My version of UT4 uses the scratch memory at C000H so that it doesn't disturb lower memory.

  Are you sure? yes | no

David Hunter wrote 10/27/2017 at 00:37 point

I checked Steve's page and he did an awesome job.   I'm glad that I provided enough information for someone else to get it working.   Dave

  Are you sure? yes | no

Steve L wrote 10/11/2017 at 04:35 point

I did get everything debugged, and added a switch for UT4/VIP operation. The RS-232 port worked fine. I put my build at: https://hackaday.io/project/27641-build-of-david-hunters-fpga-based-cosmac-vip


The flash problems I had were due to a defective SOIC to DIP adapter that apparently had two missing or defective vias, I could not believe that it didn't work (the soldering was perfect) until I buzzed things out with a meter. I had to jumper around the problem.

I'm thinking about making a wireless ESP8266 based  SPI loader for the flash chip. I found a cache of CHIP-8 games but I dread typing them into a 16-key keypad, and then finding the typos.

  Are you sure? yes | no

Steve L wrote 10/09/2017 at 03:34 point

Actually, I found at least one of my problems. There is a connector on the silkscreen of the common Chinese Cyclone II board where the pin pair is marked GND (not GND GND, or pxxx pyyy  like the others) . Foolishly, I assumed that both pins were ground so I used the outermost pin for the ground of the flash chip. I discovered that It isn't a ground, I believe that it is the power on reset pin. So, after finding a suitable ground, the unit otherwise worked fine except for the flash, "nearly" first crack. Because I built mine in a box with a keyboard connected via ribbon cable and I used a "carrier board" for the FPGA board, that was better initial success than usual :).

The MPJA schematic and photos claim that no resistor is installed for pulling up the /HOLD_RESET function at all,  (although there are pads, but no resistor on MPJA's carrier board for the /WP).  Looking at the Winbond chip spec, only the SOIC-16 chip may have the reset internally pulled up. So, I'm going to put 10k pullups on those pins tomorrow and see what happens. the symptom is that I read the same bit pattern all the time, and when I write flash, the unit locks up. That SEEMS like a hold or WP problem.

Because of the way my FPGA carrier board is mounted (upside down in a box), it isn't practical for me to push the button on the board to flip the ROM versions. So, I think that I will put a pushbutton to ground on that pin on my external case.

  Are you sure? yes | no

Steve L wrote 10/08/2017 at 19:47 point

I am in the middle of building one of these because I've never done anything with an FPGA before.  I think that I'm close to having it working but ran into a problem. I powered it up and see H/V sync pulses on video, got a pulse on the LED's and speaker, but when I press "C" (or anything else) and flip the run switch it just  seems to go dead. I built it from the zipped file above. Is that the latest working code, schematic, etc?  I programmed it with the "USB blaster"  in advanced serial mode using the Altera software. I put the 100K resistor on p87 if that is critical.


I should mention that the only real difference between your schematic and my build was that I used a "bare" flash chip, with pullups as per the MPJA schematic. Hopefully, these pins are correct;

1-p119

2-p122

3-p118

4-GND

5-p121

6-p120

7-N/C

8-3.3v

10K pullups on 1,2,5,6,7 (3 omitted by MPJA)

  Are you sure? yes | no

Similar Projects

Does this project spark your interest?

Become a member to follow this project and never miss any updates