2023-02-08 11:57:22 +00:00
|
|
|
module rom(input [19:0] address,output wire [15:0] data ,input rd,input cs);
|
2023-02-10 13:26:23 +00:00
|
|
|
reg [15:0] memory [0:127];
|
2023-02-08 11:57:22 +00:00
|
|
|
initial begin
|
|
|
|
$readmemh("boot_code.txt", memory);
|
|
|
|
end
|
|
|
|
assign data = !rd & !cs ? memory[address]: 'hz;
|
|
|
|
endmodule
|