From 6efaf0da6a919b79fe8ee51b1f8b63e1b54a1572 Mon Sep 17 00:00:00 2001 From: Zane Kaminski Date: Wed, 9 Oct 2024 04:17:31 -0400 Subject: [PATCH] Make PDS /BR open-drain --- cpld/WarpSE.v | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cpld/WarpSE.v b/cpld/WarpSE.v index ea061e2..2422720 100644 --- a/cpld/WarpSE.v +++ b/cpld/WarpSE.v @@ -201,6 +201,8 @@ module WarpSE( .IODONE(IODONE)); wire SndQoSReady; + wire nBR_IOBout; + assign nBR_IOB = nBR_IOBout ? 1'bZ : 1'b0; CNT cnt( /* FSB clock, 7.8336 MHz clock, and E clock inputs */ .CLK(FCLK), @@ -215,7 +217,7 @@ module WarpSE( .nIPL2(nIPL2), /* Mac PDS bus master control outputs */ .AoutOE(AoutOE), - .nBR_IOB(nBR_IOB), + .nBR_IOB(nBR_IOBout), /* QoS select inputs */ .BACT(BACT), .QoSCS(QoSCS),