1
0
mirror of https://github.com/mist-devel/mist-board.git synced 2026-02-05 15:44:40 +00:00

C16: T65 needs do to routed back to di

This commit is contained in:
Gyorgy Szombathelyi
2018-09-01 19:44:58 +02:00
parent 71e18aeed6
commit ce53fa7849

View File

@@ -59,6 +59,7 @@ reg [7:0] port_data=8'b0;
reg rw_reg,aec_reg;
// 6502 CPU core
wire we_n;
assign we = ~we_n;
@@ -75,7 +76,7 @@ T65 cpu_core(
.SO_n(1),
.R_w_n(we_n),
.A(core_address),
.DI(core_data_in),
.DI(we_n ? core_data_in : core_data_out),
.DO(core_data_out)
);