Forums - Open Redstone Engineers
SnugCPU 1.0 - WIP CPU - Printable Version

+- Forums - Open Redstone Engineers (https://forum.openredstone.org)
+-- Forum: ORE General (https://forum.openredstone.org/forum-39.html)
+--- Forum: Projects & Inventions (https://forum.openredstone.org/forum-19.html)
+---- Forum: In Progress (https://forum.openredstone.org/forum-20.html)
+---- Thread: SnugCPU 1.0 - WIP CPU (/thread-881.html)



SnugCPU 1.0 - WIP CPU - Konstacon - 09-03-2013

Hello! As I reached 16 subscribers, I knew I had to make a special for them. I am working on this CPU, as a special for my subbers! Here are the specs:

CPU: Pistonless, Estimated to be 25 ticks
Registers: 7
ALU: 7 tick PLA most functions: Video
Stack(Should I implement?): 4 level deep stack

Smile

Thanks!


RE: SnugCPU 1.0 - WIP CPU - AcersOS - 09-25-2013

I'm sure it will come together just fine Snug!


RE: SnugCPU 1.0 - WIP CPU - tokumei - 09-25-2013

By the way, it's best not to implement a stack, but a queue. The difference is that a stack is a 'last in, first out', meaning you'd have to feed commands in the opposite order. A queue is a 'first come, first serve', meaning you can feed them in the proper order.


RE: SnugCPU 1.0 - WIP CPU - Chibill - 09-25-2013

Use a stack that's first in first out (there is a stack that works like that.)


RE: SnugCPU 1.0 - WIP CPU - tokumei - 09-27-2013

Ah whatever. I use different names for different types of ordered lists. That's just me. The only "stacks" I've seen are the last in, first out type.