RVSCC/test/Test_InstrMemory.sv

22 lines
349 B
Systemverilog
Raw Normal View History

2022-11-28 06:07:21 +00:00
`timescale 1ns / 1ps
module Test_InstrMemory();
logic[31:0] addr;
logic[31:0] instr;
InstructionMemory instruction_memory(
.addr(addr),
.instr(instr)
);
initial begin
addr='d1;
#20
addr='d11;
#20
addr='d12;
#20
addr='d13;
end
endmodule