Forums - Open Redstone Engineers
Are wide ISA's bad? - 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: Are wide ISA's bad? (/thread-12511.html)



Are wide ISA's bad? - MW3_587786 - 06-25-2017

^^^^^


RE: Are wide ISA's bad? - Koyarno - 06-25-2017

talking about wide prom with zero decoding vs 16 bits or less with more decoding?


RE: Are wide ISA's bad? - Aerodynamic Brick - 06-25-2017

always aim for byte-length. if you cant then you can have multiple byte-length loads like a 6502


RE: Are wide ISA's bad? - tokumei - 06-26-2017

Don't think about just the length of your instructions. Think about what tasks can be done in proportion to the instruction length. If an architecture has instructions that are 2x as long as another but the functionally equivalent program you wrote has half as many lines, then they both have the same space efficiency.

I don't know if any scientific research has been done on the matter, but like aero has said, 8 bit (or even variable width) instructions are very popular here.


RE: Are wide ISA's bad? - ddthj - 06-30-2017

I'd say it has to do more with the purpose of the CPU, all my old stuff was wide just because faster execution times in minecraft since I could skip the decoding step, my newer stuff has more practical uses so I trade that speed away for what I think is a more useful size (like for von neuman architecture)