VIC20 for the MiST fpga (part 2)

Found a few minutes today to have a look at the cartridge system. As it was implemented the vic didn’t start the rom when doing a reset. As found in the documentation linked in the previous post the vic expects some magic bytes at a specific address to autostart a cartridge:

It looks like that those dumped roms (.prg) have two extra bytes in the beginning. Shifting the access to those roms two bytes up made it work:

Astroblitz
vic_astroblitz

Choplifter
vic_choplifter

Solar System
vic_solarsystem

As usual the source code can be found in my github repository.

Update 07.12.2014
Looks like that there’re different dumps available. Found a side with .a0 cartridges which doesn’t need the shift.

What’s next: a vic20 core for the MiST

Recently I tried to implement the ram expansion for the Apple II+ but failed again. The test suite didn’t recognize the additional ram or the additional memory access interfered with the disc access which lays in the sdram as well.

A little disappointed I was in need of a simple new project for my little free time. The vic20 was the obvious choice as it has low demand on memory and should be easy to port. But I was wrong.
The first difficulty was to find the right sources. Unfortunately there were no sources on the fpgaarcade site where it derives from. An Internet search revealed several places with several different implementations of the same original sources.
I started with the Papilio port but didn’t succeed. I got a screen output but only with a lot of “@”s.
Even though the sources were almost identically I got more success with the de2 sources. I used BRAM instead of SRAM and the vic20 on the MiST was alive:

vic20_mist

But there’s still a lot do to to make it usable. The refresh rate is a little odd and needs a little tuning.
An internal test cartridge and one uploaded via the MiST osd didn’t start.
Due to this the sound output isn’t tested. The vic20 is only unexpanded and needs some memory expansions.
And finally the boot time is rather long and I dunno what’s doing there (testing ram?).
Fortunately I found some resources on the net which might help me to got those topics done:

http://paradroid.automac.se/vic20ram/
http://ftp.giga.or.at/pub/c64/library/vic20.doc

The sources can be found here:
https://github.com/wsoltys/mist-cores/tree/master/vic20

Other sources:
http://forum.gadgetfactory.net/index.php?/topic/1284-vic20/
https://fador.be/fpga/vic20/
http://jderogee.tripod.com/projects/minimig_altcores/Minimig_altcores.html

Status

A2600: Atari VCS core update

I’ve updated the Atari VCS core for the MiST and added F4 bank switching. F4 is the standard Atari scheme for 32kb roms.
Additionally I’ve replaced the 6502 core with the core from Peter Wendrich with his permission. It’s supposed to support illegal opcodes which may help with some previously not working roms.
Unfortunately my test roms (atarsi, bang!, Donkey Kong homebrew) didn’t work properly but the changes won’t harm either 🙂
Grab it from the MiST FPGA Google repository as usual.

Status

Apple II+ core update

And another one for today. Also the MiST Apple II+ core got a small update.
I’ve added analog joystick support which is a new feature of the recent firmware. It’s only supported for usb joysticks and not for DB9 joysticks.
I’ve added the possibility to swap joysticks via OSD. This way the usb joystick becomes joystick 0 and can be used instead of the DB9 joystick to play the games.
Unfortunately the analog joystick support is currently untested as I don’t own one.

Download:
https://code.google.com/p/mist-board/source/browse/trunk/bin/cores/appleii+