Status

Updates to Apple II+ and Colecovision fpga cores

Just a short notice that the Apple II+ and the Colecovision fpga cores got some updates. Thanks to Till and gyurco who sent me pull requests. Head over to the official mist core page for download.

Colecovision
– Support for the MegaCart (ROMs up to 1MB) and SuperGameModule (32k RAM, AY-8910 sound chip) added

Thanks to gyurco.
https://github.com/mist-devel/mist-binaries/tree/master/cores/colecovision

Apple II+
– Apple II+: YPbPr support

Thanks to Till
https://github.com/mist-devel/mist-binaries/tree/master/cores/appleii%2B

wsoltys in the media …

… not really but my repository at github was seen in the recent retrorgb podcast:

Looks like to totally forgot to insert a readme with the link to the original sources. Shame on me. I’ll do that later but meanwhile here the link where I got all the stuff: https://svn.pacedev.net/repos/pace/
Kudos to tcdev for all the work!

Update:
I’ve updated my repo https://github.com/wsoltys/pacedev with the latest sources from Mark’s svn and a readme to his repository.

Updated Apple II plus core for the MiST

I’m still not completely happy with the mockingboard implementation but one can play with it and if it doesn’t work nicely just turn it off (it’s off per default).
Skyfox starts playing music but hangs later which doesn’t happen when the mockingboard is turned off. Another bug is that from time to time I just hear statics and a new recompilation under Quartus fixed that. So something with the timing might not be okay. I’ve added a .sdc file which made it a little bit more stable but I’m open for hints on how to stabilize it.

I fixed another issue which annoyed me lately. When doing a reset the Apple II preserves it memory and software is able to alter the reset vector. At memory $3F2 and $3F3 the reset address is stored and when altered a reset brings you to the prompt (at best) or just hangs somewhere and you can only turn off the MiST. If $3F4 would be a random value and not the XOR between $A5 and $3F3 the Apple II would “think” its a cold boot and starts the Autostart ROM.
I just set $3F4 to zero when the cold boot option in the osd is pressed and the Apple II resets and tries to start from disk.

WIP: mockingboard support for the Apple II plus on MiST FPGA

After the Saturn RAM expansion I’ve looked around for an easy follow up project which I could do in my little spare time. The mockingboard looked like an reasonable addition since the used components where already available as hdl sources (beside the speech chip). I found several schematics for the board which differed slightly. I’ve started with the mockingboard clone by Bill Garber:

schematic

I was and I’m still a little puzzled which clocks I have to use to drive the VIA and the PSG. The different schematics are also using different clocks so I chose the ones from the following document:
Mockingboard-v1a-Docs.pdf.
Another source of inspiration was the schematics from the Carte Blanche project 37:
http://www.applelogic.org/CarteBlancheIIProj6.html

Pretty quick I heard the sound effects of the mockingboard system disc (mockingboard1.dsk, youtube). Unfortunately only effects could be heard. It was quiet when it should play the music or the effect when the text scrolls up.
After some fiddling with the clocks and connecting the IRQ line to the processor the Apple resets to the monitor prompt when the text should scroll up. I spend many hours on debugging with different clocks but I didn’t find the cause. Later on I noticed that it always happens when the VIA dropped the IRQ line. Afterwards it was never raised again.
As usual Signaltap was quite a help. The Apple manual (Understanding the Apple II) stated that the reset vector for the IRQ routine is at $FFFE and $FFFF. For my rom it shows $FF59 and looking around I found that it means it jumps right away to the monitoring prompt, *gotcha*.
But what does it mean? I found a quite useful discussion about here: mockingboards. It looks like that on Apple II without the autostart rom the IRQ reset vector should be at $FA86 and on Apple II+ at $FA40. $FF59 is the jump address for RESET on an Apple II. So there’s something wrong with my rom. I’ve changed the IRQ routine to $FA40 ($FFFE=40, $FFFF=FA) and voila it worked and music was played.
It’s still a little wonky and need more debugging (skyfox crashes, no sound on GI Joe) but this could also be some bad disk images.

If someone wants to play with the sources then have a look here:
https://github.com/wsoltys/mist-cores/tree/mockingboard/apple2fpga

Saturn 128K RAM expansion for the Apple II plus

Finally I got the Saturn RAM expansion working. It was a stupid mistake with the ram addressing. Now the RAMTEST128K test program runs through without an error. The card is implemented in slot 5. A second card could be added if necessary.
To get it working some utilities are needed which can be obtained from here: Saturn 128K RAM Software. It includes programs like movedos, ramexpand and pseudo disk (ram disk).

Saturn128k1Saturn128k2