mirror of
https://github.com/MiSTer-devel/Gameboy_MiSTer.git
synced 2026-05-17 03:03:43 +00:00
20 lines
269 B
Verilog
20 lines
269 B
Verilog
|
|
module fast_boot_rom(
|
|
input clk,
|
|
input [7:0] addr,
|
|
output reg [7:0] data
|
|
);
|
|
|
|
reg [7:0] rom_data [255:0];
|
|
|
|
initial begin
|
|
$readmemh("BootROMs/dmg_boot.mem", rom_data);
|
|
end
|
|
|
|
always @(posedge clk)
|
|
begin
|
|
data <= rom_data[addr];
|
|
end
|
|
|
|
endmodule
|