The break we needed!

Finally we got Stage 2 to work!!! But it was not easy.

We made a simple test program to just cycle colors of the PWR_LED. But that did not work at all, just a blink on the led. #sad_face

First we found that we missed that the logic of the PWR_LED register was positive, eg. it needed a HIGH enable signal to clock the data in.

But our address logic was done to create negative enable signals:

So the fix for this was easy, just update the logic code to not invert the enable signal on pin 21, the PWR_LED enable pin.

After this we still only got a flash of the led and then it turned off. So we tried to just set the register to 0x07, all led pins high. And it did actually set the led to white (or rather blueish, need to adjust the resistors to balance the intensity)

So finally we found that the program was missing some usefull parts. When we tested with branch instructions insted of jumps we got it to work better. That meant that we had not initialized the stack and memory correct. We needed to add initialization of the bank registers, so the address for the stack would be correct and we needed to fix a inca that should be an incb. After these fixes we got the computer to run!!!

Corrected and working code to cycle the PWR_LED:

Image of the final working board!

So next step is to add serial controller and the USB interface chip. The drivers for that are already written by my son and he is anxious to try it out!

To infinity and beyond!

By:

Posted in:


Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.