nand2/03_Sequential_Logic/RAM3840.v
Michael Schröder 971b323822 added v2.0
2023-01-11 23:04:57 +01:00

19 lines
295 B
Verilog

/**
* RAM3840 implements 3840 Bytes of RAM addressed from 0 - 3839
* out = M[address]
* if (load =i= 1) M[address][t+1] = in[t]
*/
`default_nettype none
module RAM3840(
input clk,
input [11:0] address,
input [15:0] in,
input load,
output [15:0] out
);
// Put your code here:
endmodule