Skip to content

A cartridge for the TI 99/4A that runs ROM and GROM images from an SD card

License

Notifications You must be signed in to change notification settings

nsinav/finalgrom99

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FinalGROM 99

The TI 99/4A FinalGROM Cartridge, or FinalGROM 99 for short, is a cartridge for the TI 99/4A home computer that allows you to run ROM and GROM cartridge images from an SD card. It succeeds the FlashROM 99 released in 2016.

The FinalGROM 99 Cartridge

The FinalGROM 99 supports ROM images, GROM images, and mixed images of up to 1 MB in size that use the write-to-ROM bank switching scheme. The cartridge does not require the Peripheral Expansion Box and runs on both PAL and NTSC consoles, including modified consoles with an F18A. It will also run on v2.2 consoles and enables those to run ROM-only programs.

The cartridge offers some advanced modes that provide RAM and GRAM to programs. It also allows a running program to reload another program from SD card or to dump its state to SD card. All firmware of the FinalGROM 99 can be updated by SD card.

The FinalGROM 99 is released as Open Source Hardware under the CERN OHL license and the GNU GPL license. Both hardware design files and firmware sources are available on GitHub.

The project homepage with detailed instructions is located at GitHub.

Using the FinalGROM 99

Using the FinalGROM 99 is simple and doesn't require any special hardware or software.

To begin, copy some cartridge dumps or other images files onto an SD or SDHC card. You can create directories to organize your programs. Switch off the TI 99 and plug in the FinalGROM 99, then insert the SD card into the FinalGROM 99. Switch on the TI 99 and wait until the activity indicator on the FinalGROM 99 is no longer lit.

Press any key to bring up the TI menu screen. You should see the FINALGROM 99 entry. Select it to start the image browser, where you can page through the list of available image entries with ,, ., SPACE, and number keys. When you descend into a folder, the FinalGROM will reload its contents from the SD card. To go back up to the parent folder, select the special folder / ...

Image selection

Select the image you want to run. The screen will show a loader animation while the image loads. Once the image has been loaded, it will start automatically. The SD card is now no longer required and may be removed.

If only one image is found on the SD card, it is loaded immediately without the need to select it first. This method ensures maximum compatibility. Note that ROM images loaded as single-image SD card will not run on v2.2 consoles!

If you want to run a different program from the SD card, reset the TI 99 by pressing FCTN-= and then reset the FinalGROM 99 by pushing the reset button. If you do not reset the FinalGROM 99, the TI menu will show only the previously selected image. Alternatively, you can power cycle the console, which will reset both TI 99 and FinalGROM 99.

For detailed usage information please refer to the FinalGROM 99 homepage.

Building the FinalGROM 99

The GitHub repository contains all hardware design files and software sources required to build the FinalGROM 99.

Building the FinalGROM 99 is slightly more involved than building its predecessor FlashROM 99, as the FinalGROM 99 uses surface-mounted devices (SMD), of which two are programmable. For starters, this video tutorial shows how to solder SMD ICs by hand.

Hardware

To build the FinalGROM 99, you need the following components:

  • 1x FinalGROM 99 PCB
  • 1x Xilinx XC95144XL-10TQ100 (TQFP-100)
  • 1x Atmel ATmega 328P (TQPF-32)
  • 1x Cypress SRAM CY62158EV30LL-45ZSXI (TSOP-44)
  • 1x On Semiconductor Voltage Converter NCP1117ST33T3G (SOT-223)
  • 12x 100 nF ceramic capacitors (SMD 0603)
  • 2x 10 uF tantalum capacitors (SMD 0603)
  • 2x 330 Ohm resistor (SMD 0603)
  • 2x 10 kOhm resistor (SMD 0603)
  • 1x LED 3-5 mm (through-hole)
  • 2x micro push button (through-hole)
  • 1x 2x3 socket (through-hole)
  • 1x SD socket or Arduino SD shield

The FinalGROM 99 board was designed with KiCad, a cross platform and open source electronics design automation suite. The design files are stored in pcb/ in the repository.

The size of the 330 Ohm resistor depends on the color and brightness of your LED. For bright, red LEDs, 330 Ohm is a suitable value.

Both LED and push buttons are through-hole components, so that they can be mounted on a cartridge shell and connected by wires to the board.

Parts Placement

For the SD socket, you need a socket that has two little nubs at the bottom of the socket. Your best source for these is eBay, but check the pictures before you buy. Alternatively, you may use an Arduino SD shield that is readily available online. Make sure to pick a module that matches the pin-out of the reference module shown below. Note that the 5V input is not used, so potential substitutes must be powered by 3.3V.

SD socket

With some work, the FinalGROM 99 can be mounted in a standard TI 99 cartridge shell.

Mounted in Cartridge Shell

Please note that I don't offer carts, boards, or parts myself.

Software

The firmware for the ATmega 328P consists of two components. The avr/ folder contains the microcontroller logic for accessing the SD card, generating the image browser, loading the selected image, and controlling the CPLD. The included bootloader enables firmware updates from an SD card.

The ti/ folder contains TI 99 assembly sources for the image browser, the GPL wrapper, and the help viewer. The assembled machine code is embedded in the microcontroller and loaded into RAM during operation.

To build the software, first run the make.py script in the ti folder. You will need both xas99 and xga99 assemblers from the xdt Suite to assemble the sources. The script will also convert the generated machine code into C code for the microcintroller.

$ cd ti/
$ ./make.py

The next step is to compile the microcontroller and bootloader code in avr/. The included Makefiles make the compilation trivial:

$ cd avr/
$ make
$ cd boot/
$ make

The last build yields a package.hex file containing both machine code and bootloader. You can flash the file to the ATmega 328P using avrdude or any other programmer:

$ avrdude -p m328p -P /dev/ttyACM0 -c stk500 -U flash:w:package.hex

Additionally, you need to program the lower fuse bits of the 328P so that it runs at 8 Mhz:

$ avrdude -p m328p -P /dev/ttyACM0 -c stk500 -U lfuse:w:0xe2:m

If you're using a different tool chain make sure to set CKSEL3..0 in the lower fuse byte to 0100. (Note that 0 means "programmed"/checked, and 1 means "unprogrammed"/unchecked).

You can verify that you're running at the right clock speed by resetting the FinalGROM 99 with no SD card inserted: The LED should blink about once per second.

For future updates, you may copy the file UPDATE.AVR generated by the first make in avr/ to an SD card and start the FinalGROM 99 with it. This procedure will update the microcontroller similar to avrdude, but it does not touch the bootloader.

Programming the CPLD requires the Xilinx ISE 14.7 Web Pack to generate a JEDEC file or an XSVF file. ISE Web Pack is freely available for Windows and Linux. After the installation, open ISE and open the project in vhdl/. Click on the little green arrow next to the process window to generate a JEDED file.

The microcontroller contains an XSVF player to program the CPLD without JTAG cable. Generate the necessary XSVF file from the JEDED file by running (you may have to adjust the path in impact-batch)

$ cd vhdl/src
$ ./impact-batch fg99-xsvf

Copy the resulting .XSVF file as UPDATE.PLD to an SD card and start the FinalGROM 99 with it. The cart will program the CPLD just like a JTAG cable would do.

Once microcontroller and CPLD have been programmed, the assembled FinalGROM 99 is ready to use.

About the Project

The TI 99/4A FinalGROM Cartridge is Open Source Hardware released under the CERN OHL license, in the hope that TI 99 enthusiasts may find it useful. Software components are released under the GNU GPL license.

The microcontroller code uses a modified version of the Petit FatFs library and an adapted version of the Xilinx Application Note 58 code.

Heartfelt thanks go to Erik Spiehl (speccery) for helping me analyze an electrical problem on the development boards, and to Jim Brain (Brain) for showing me how to replace the Arduino shields by plain SD sockets.

Contributions to both hardware and software are very welcome! Please email feedback, support questions, inquiries for parts, and bug reports to the developer at r@0x01.de.

About

A cartridge for the TI 99/4A that runs ROM and GROM images from an SD card

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 88.8%
  • Makefile 5.2%
  • VHDL 3.5%
  • Python 2.4%
  • Shell 0.1%