RVSCC/src/InstructionMemory.sv

10 lines
158 B
Systemverilog
Raw Normal View History

2022-11-26 10:44:00 +00:00
`timescale 1ns / 1ps
// N = Bit width
module InstructionMemory #(parameter N = 8)
(
input logic[N-1:0] addr,
output logic[N-1:0] instr
);
endmodule