ProjectRed/Redpower 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: ProjectRed/Redpower CPU (/thread-14935.html) |
ProjectRed/Redpower CPU - gsholbert - 01-24-2019 A couple of years ago I had been working on what I hoped to be the fastest minecraft cpu ever (kinda cheating, i guess? but i felt that this is what was necessary for the evolution of similar projects) using Redpower by Eloraam. However, between losing my progress to hard drive corruption, and Eloraam ghosting the world, I came to a standstill. I still would like to finish, and I'm wondering if people on here would be interested in seeing it's progress, and maybe even contributing in some ways. basic ideas for the CPU:
RE: ProjectRed/Redpower CPU - gsholbert - 01-29-2019 A slight bump to the thread: 1) I realize that even though I could implement some of the ideas in the first post, some of them would cause more headache than good. 2) I've started to document explanations of various components and operations, for my sake as well as anyone who ends up following this progress. All documents are currently held in this folder: https://drive.google.com/open?id=1KnqPfzYrKURBe3x6Akpo49bBz9obF9Iy Currently I've started documenting my planned synchronization methods across the CPU, as well as my planned implementation of hardware level interrupts. Keep checking that folder, as even though I plan to update this post as I go, I might forget, or it might be a couple of days before I post the progress. Like I said, feedback is super important, so please feel free to point out any potential issues or shortcomings you might see RE: ProjectRed/Redpower CPU - Koyarno - 01-29-2019 On the one hand you say you want to advance the status of minecraft computers, but the mod aspect of it feels.... weird. Most of us here would just say that if you are using computercraft you already got a splendid computer for mc. Also, you want a pipelined processor, but the style of the instruction decoding feels like a 'seventies' stepped-clock processor where its mostly a control unit trying to manage IO on a big main bus. Maybe you want to shed some light on that :p. Can you say what holds you back not using mods? RE: ProjectRed/Redpower CPU - gsholbert - 01-29-2019 Computercraft is a fantastic way to have computers in the game. To clarify; I specifically meant advance the status of redstone cpus. My goal is to use Computercraft as portions of the cpu itself as little as possible, mainly for things that wouldnt be possible otherwise. I'm thinking of using it for the rom storage, just because of the large amount of data I could store in such a small footprint. I also plan on attempting to make a keyboard with the touchscreen monitors, so that inputs are possible without sprinting across a chunk and a half. I haven't heard a comparison of what I want to do with the style of processor you're talking about, so I'm definitely going to go do more research before I dare shed light on that matter. And finally, vanilla redstone holds us back in two major ways: speed and footprint. Project red will allow me to reduce the footprint in a couple of ways: bundled cables, redstone that carried further than 16 block without repeated, and one block logic gates. I don't plan on using the ICs that are in the pack, save for a few special gates that the pack doesn't include, such as configged buyers, for this iteration, but maybe in the future for a faster rebuild. All of the aforementioned logic gates also have a delay of one tick, significantly speeding up even simple logic functions. RE: ProjectRed/Redpower CPU - gsholbert - 01-29-2019 Ah, okay. Just looked, and realized I forgot to mention a few things. One of the biggest being that I am no longer going with a fully pipelined processor for the first "revision". I want to see how everything works before I decide the best way to move forward with pippelining the system. The only thing that will be pipelined is the fetch cycle. Also, inspiration for a lot of this design is going to come from this post: https://forum.openredstone.org/showthread.php?tid=1845. Seeing as their inspiration came from the 8086, I guess that seeming like a seventies cpu puts me right on target I'm very thankful that you took the time to not only read and reply to my post, but it seems you really took the time to read all of the documentation so far. RE: ProjectRed/Redpower CPU - Koyarno - 01-30-2019 Yeah I'm not really trying to demotivate you with all the non vanilla stuff, but nobody here really works with redpower :p And even though your documentation is nice, hardware layout speaks miles more than words alone. So If you want to solve a certain problem, we might be able to help. And of course i'll keep checking your docs. |