social.coop is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Fediverse instance for people interested in cooperative and collective projects. If you are interested in joining our community, please apply at https://join.social.coop/registration-form.html.

Administered by:

Server stats:

490
active users

#CPUdesign

0 posts0 participants0 posts today

Baby steps in getting my Apple I reproduction PCB up and running. 6502 CPU booting with just RAM and ROM attached. It grabs the reset address from ROM and starts executing code...until it tries to do something with IO, which is not attached yet...

I'm monitoring the bus with an Arduino MEGA attached to my MacBook Pro.

Welcome to the world, little one.

Meet the very first Sprout24 CPU, fully assembled tonight for the first time.

25 circuit boards, 2600+ components, 730 LEDs, 1000+ integrated circuits, 9700+ logic gates, and over 29,000 transistors.

She's going to be a thing of poetry when she starts executing code.

I've tested each board individually, but have yet to apply power to the entire thing. I'm not sure I'm ready yet to dare try.

The last of the circuit boards for my 24-bit CPU are finally in production. Now we wait. There will be a lot of testing to be done once these show up.

Final tally: 25 PCBs. 20" × 9" × 7" total footprint. Very approximately 1000 ICs consisting of 10000 logic gates and 30000 transistors.

That gives a similar transistor count to an Intel 8086 or an early ARM processor. Or around triple the transistor count of an 8-bit Z80 or six times that of a 6502.

There are going to be *so* many blinkenlights.

I thought I had the bugs with hardware interrupts fixed, but it turns out the fix just hid the problem and it reared its head again with a different set of test programs.

I haven't totally tracked it down, but it's looking like if it's a jump instruction that's interrupted, sometimes the INTRET instruction goes back to the wrong address.

The combination of pipelining and interrupts makes it really hard to trace. I wonder if just masking out IRQs during jump instructions and effectively making them uninterruptible would solve this.

Not the most satisfying solution if it works, but it would save a whole lot of hardware redesign time.

The simple incrementer/decrementer for the stack pointer looks like it would have been the critical path for the entire CPU, limiting the clock to a theoretical max of about 5Mhz. So I converted it to a carry-lookahead design to make it much more efficient.

I have no idea yet how fast I'll be able to push this CPU in the real world, given the large physical size. But at least I know this part won't be the chokepoint anymore.