aboutsummaryrefslogtreecommitdiff
path: root/src/rom.v
blob: 90a9846862af58cd531f40838a0d8cc514d1faa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module rom #(
  parameter N = 32, 
  parameter SIZE = 1024
)(
    input clk,
    input rst,
    input [log2(SIZE)-1:0] addr,
    output [N-1:0] data_read
);

`include "include/log2.vh"

endmodule