|
|
|
|
|
by Teknoman117
1653 days ago
|
|
I kind of want to try to make a "74 series logic" RISC V CPU at some point so I can inherit the compiler. It's rough building the larger systems though. All the early logic is still around for the most part, but most of the "medium integration" parts have disappeared. Things like register files and bitslice ALUs. (74x181, etc.) |
|
It’s not difficult to buy old 74x181 and 74x182 ICs on eBay. You can even get sixteen-bit ALUs like the IDT 7831 for decent prices.
Build a register file from a bank of registers. For example, use a 74x138 and a few 74x377.
Alternatively, either use a true dual port SRAM to build a three port register file, or build your own from a time-multiplexed SRAM and some bus transceivers.
Complex combinational logic can be implemented in an EEPROM truth table pretty easily.
Sometimes, part of the fun is figuring out how to build a complex device from a very limited palette of parts.