1
0
mirror of https://github.com/Gehstock/Mist_FPGA.git synced 2026-05-05 07:44:04 +00:00
Files
Gehstock.Mist_FPGA/Commodore - MAX_MiST/rtl/cart.sv
2018-02-07 23:24:44 +01:00

21 lines
381 B
Systemverilog

module cart(
input clk0,
input [15:0] addr,
input [7:0] data_i,
output [7:0] data_o,
output reg nmi,
input reset,
input romL, // romL signal in
input romH,
input rw_pla_n,
input ba,
input cia_pla_n,
input cia_n,
input cnt,
input exram_n,
input sp,
input rw_n,
input irq_n
);
endmodule