From 35bb9686b7188dfc867f41de425b4cc7c750e2ab Mon Sep 17 00:00:00 2001 From: Eugene Lozovoy Date: Sun, 24 Dec 2023 23:25:14 +0300 Subject: [PATCH] exclude port #FF 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 10efcfc..5f6f3c8 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))? 1'b0 : 1'b1; +assign n_iorqge = (n_m1 && (port_fffd_full || port_bffd || port_b3 || port_bb))? 1'b0 : 1'b1; assign d = ioreq_rd && port_fffd? ad : ioreq_rd && port_b3? gs_reg_out :