Fixed irq_n and nmi_n active low/high bug

This commit is contained in:
Niels Moseley 2018-01-27 22:58:07 +01:00
parent ac2d460f92
commit 15f476b9eb

View File

@ -23,8 +23,8 @@ module arlet_6502(
.DI(dbi),
.DO(dbo_c),
.WE(we_c),
.IRQ(irq_n),
.NMI(nmi_n),
.IRQ(~irq_n),
.NMI(~nmi_n),
.RDY(ready),
.PC_MONITOR(pc_monitor)
);