tech.lgbt is one of the many independent Mastodon servers you can use to participate in the fediverse.
We welcome all marginalized identities. This Mastodon instance is generally for folks who are LGBTQIA+ and Allies with an interest in tech work, academics, or technology in general.

Server stats:

2.9K
active users

I tried to connect a 128-kilobyte SRAM chip to the . (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.

Public

The SRAM chip being always enabled/selected shouldn't be a problem (the data lines are high-Z if /WE and /OE are high).

Public

Solved (I just changed the power supply lol). A program that tests the first 16 bytes:

Public

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.

Public

@0x10f @rc2014 if disconnecting the data lines fixes the boot, you probably get spurious /OE. Maybe something in the boot rom also checks I/O in this range (which is rather large)

Public

@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 :)