Fixed one small error in the housekeeping module that was surfaced

by the pull-up/pull-down testbench.
This commit is contained in:
Tim Edwards 2022-10-06 15:57:45 -04:00
parent 0d6c3f9519
commit a07d0d5dac
1 changed files with 1 additions and 1 deletions

View File

@ -802,7 +802,7 @@ module housekeeping #(
(spi_is_active) ? sdo : mgmt_gpio_data[1];
assign mgmt_gpio_out[0] = (debug_mode) ? debug_out : mgmt_gpio_data[0];
assign mgmt_gpio_oeb[1] = (spi_is_active) ? sdo_enb : ~gpio_configure[0][INP_DIS];
assign mgmt_gpio_oeb[1] = (spi_is_active) ? sdo_enb : ~gpio_configure[1][INP_DIS];
assign mgmt_gpio_oeb[0] = (debug_mode) ? debug_oeb : ~gpio_configure[0][INP_DIS];
assign ser_rx = (uart_enabled) ? mgmt_gpio_in[5] : 1'b0;