I tried to connect a 128-kilobyte SRAM chip to the #RC2014. (It's not intended to replace the original RAM.) I used shift registers for the address (slow but less wires needed). The circuit is supposed to work as follows:
- Write a byte to I/O port 0-31: shift the least significant bit into the LSB of the address shift registers.
- Read/write a byte from/to I/O port 32-63: read/write a byte from/to the SRAM chip at the address specified by the shift registers.
However, the RC2014 won't boot if I connect the circuit to it. (Disconnecting all the data lines from the RC2014 at least lets it boot.)
Edit: photos added.
Edit: I didn't pay attention to the order of data lines or the order of address lines except where it seemed necessary.
Edit: diagram drawn with GNU IMP.
The SRAM chip being always enabled/selected shouldn't be a problem (the data lines are high-Z if /WE and /OE are high).
I redesigned the circuit. One less 74164 and faster. The memory is organised into 4096 (2^12) banks of 32 bytes each. How to use:
- Write a byte to I/O port 0-31: shift the least significant bit into the LSB of the 12-bit bank shift register.
- Read a byte from I/O port 32-63: read a byte from address 0-31 in current bank.
- Write a byte to I/O port 32-63: write a byte to address 0-31 in current bank.
The Basic program writes the first and last 8 banks and prints them.
@0x10f I have found that placing decoupling capacitors near the ICs improves stability versus a single cap across the the power rails. Might be my old breadboards are just "slushy" for higher speed signals. I see the 100nF in the diagram but not where it's situated. If you still get glitching with the new power supply it might be a thing to poke at :)