5x9-bit storage bank
requirements:
to write:
you will need the stack address
bits that you want write
in the form of signal 1-9
each with a value of 1
and the write operator W(1)
! ! Note! ! This will return nothing on red
you will need to do a read operation
to check if it was successful
to erase:
you will need the stack address
bits that you want to erase
in the form of signal 1-9
each with a value of 1
and the erase operator E(1)
!!Note!! This will return nothing on red
you will need to do a read operation
check if it was successful
to read:
you will need the stack address
and the read operator
Stack Addresses:
Signal: S(1001)
Stack 1: 1001
Stack 2: 1010
Stack 3: 1011
Stack 4: 1100
Stack 5: 1101
Examples:
to write bits 4, 6, and 8 in stack number 2
send the following on the green wire:
| S(1010) | W(1) | 4(1) | 6(1) | 8(1) |
