From 548d6ef2458e23cfc2fb6cea2f8e29d16393f924 Mon Sep 17 00:00:00 2001 From: Eugene Lozovoy Date: Sun, 24 Dec 2023 23:24:50 +0300 Subject: [PATCH] exclude ports #0F, #1F, #4F, #5F from iorqge signal --- cpld/rtl/top.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpld/rtl/top.v b/cpld/rtl/top.v index 09d813f..10efcfc 100644 --- a/cpld/rtl/top.v +++ b/cpld/rtl/top.v @@ -361,7 +361,7 @@ assign aa0 = a[1]? saa_a0 : ym_a0 ; assign ad = ioreq_wr && (port_fffd || port_bffd || port_ff)? d : 8'bzzzzzzzz; assign n_wait = 1'bz; -assign n_iorqge = (n_m1 && (port_fffd_full || port_bffd || port_b3 || port_bb || port_ff || port_xf))? 1'b0 : 1'b1; +assign n_iorqge = (n_m1 && (port_fffd_full || port_bffd || port_b3 || port_bb || port_ff))? 1'b0 : 1'b1; assign d = ioreq_rd && port_fffd? ad : ioreq_rd && port_b3? gs_reg_out :