From 0f798606560c5abb275976b063f88e82ba48971f Mon Sep 17 00:00:00 2001 From: RuigeLee Date: Mon, 31 Jul 2023 09:19:57 +0800 Subject: [PATCH] revert mdio direction --- src/FPGATop.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FPGATop.v b/src/FPGATop.v index 75c7f37..60befa0 100644 --- a/src/FPGATop.v +++ b/src/FPGATop.v @@ -310,7 +310,7 @@ ExampleRocketSystem i_rocketChip( .O(mdi), // Buffer output .IO(mdio), // Buffer inout port (connect directly to top-level port) .I(mdo), // Buffer input - .T(mdoEn) // 3-state enable input, high=input, low=output + .T(~mdoEn) // 3-state enable input, high=input, low=output ); endmodule