20 lines
353 B
Coq
20 lines
353 B
Coq
|
module spMem(
|
||
|
output [7:0] dout,
|
||
|
input clk,
|
||
|
input oce,
|
||
|
input ce,
|
||
|
input reset,
|
||
|
input wre,
|
||
|
input [15:0] ad,
|
||
|
input [7:0] din
|
||
|
);
|
||
|
reg [0:255] mem = {
|
||
|
8'h0,
|
||
|
8'h48, 8'h01, 8'h23,
|
||
|
8'h48, 8'h02, 8'h46,
|
||
|
8'h03, 8'h01, 8'h01, 8'h02,
|
||
|
168'h0
|
||
|
};
|
||
|
|
||
|
assign dout = mem[ad*8+:8];
|
||
|
endmodule
|