SummerCart64/fw/btldr/btldr_template.sv
Polprzewodnikowy 0992680dd7 good
2021-08-18 13:54:07 +02:00

21 lines
438 B
Systemverilog

bus.rdata
module cpu_bootloader (if_cpu_bus bus);
always_ff @(posedge bus.clk) begin
bus.ack <= 1'b0;
if (bus.request) begin
bus.ack <= 1'b1;
end
end
always_comb begin
bus.rdata = 32'd0;
if (bus.ack) begin
case (bus.address[6:2]){rom_formatted}
default: bus.rdata = 32'd0;
endcase
end
end
endmodule