summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaptor Engineering Development Team <support@raptorengineering.com>2019-06-13 20:42:01 -0500
committerRaptor Engineering Development Team <support@raptorengineering.com>2019-06-13 20:42:01 -0500
commit431cac11f2981f19b2e6cff149e33e713f334df7 (patch)
tree10e82dc3b7a27ad0f379c084f657ccbd496bc6c3
parent43a7857743acc7f5f3d7ad926b749cf70cc1f742 (diff)
downloadblackbird-system-fpga-431cac11f2981f19b2e6cff149e33e713f334df7.tar.gz
blackbird-system-fpga-431cac11f2981f19b2e6cff149e33e713f334df7.zip
Fix a few wire declarations that should have been registers
Set FPGA reset line to output reg instead of inout These changes fixed synthesis warnings / overrides, and are not expected to change the functionality of the resultant bitstreams.
-rw-r--r--main.v14
1 files changed, 7 insertions, 7 deletions
diff --git a/main.v b/main.v
index d5a9886..8bea40b 100644
--- a/main.v
+++ b/main.v
@@ -56,7 +56,7 @@ module system_fpga_top
output reg window_open_n,
// BMC system reset signalling
- inout bmc_system_reset_request_n,
+ output reg bmc_system_reset_request_n,
// Component disable lines
input wire ast_video_disable_n,
@@ -302,12 +302,12 @@ module system_fpga_top
reg [7:0] i2c_write_reg_latch = 0;
// Front panel control signals
- wire panel_nic1_led_cathode_std;
- wire panel_nic2_led_cathode_std;
- wire panel_nic3_led_cathode_std;
- wire panel_power_led_std;
- wire panel_uid_led_std;
- wire panel_hdd_led_std;
+ reg panel_nic1_led_cathode_std = 1;
+ reg panel_nic2_led_cathode_std = 1;
+ reg panel_nic3_led_cathode_std = 1;
+ reg panel_power_led_std = 1;
+ reg panel_uid_led_std = 1;
+ reg panel_hdd_led_std = 1;
reg [2:0] bmc_startup_kr = 3'b000;
reg [2:0] bmc_startup_fader = 3'b000;
reg [2:0] bmc_startup_staggered_fader = 3'b000;
OpenPOWER on IntegriCloud