diff options
author | Paul Selkirk <paul@psgd.org> | 2015-11-13 17:03:52 -0500 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-11-13 17:03:52 -0500 |
commit | b1e661bf4f8a715743222977067c1cf560408b40 (patch) | |
tree | dbda524f94b591a9952577303f768f96f8d5ae88 /i2c/rtl | |
parent | 5ad8554e49ed204ffe5242493b16d7735cadb4e6 (diff) | |
parent | 47508ec70ea2c85cb1541b1c3a214439357ad735 (diff) |
Merge branch 'config_core_selector'
Diffstat (limited to 'i2c/rtl')
-rw-r--r-- | i2c/rtl/novena_i2c.v | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/i2c/rtl/novena_i2c.v b/i2c/rtl/novena_i2c.v index 4ea6f82..db2c203 100644 --- a/i2c/rtl/novena_i2c.v +++ b/i2c/rtl/novena_i2c.v @@ -53,7 +53,7 @@ module novena_top // I2C interface input wire i2c_scl, inout wire i2c_sda, - + // Novena utility ports output wire apoptosis_pin, // Hold low to not restart after config. output wire led_pin // LED on edge close to the FPGA. @@ -99,7 +99,7 @@ module novena_top wire sda_pd; wire sda_int; - + wire clk = sys_clk; // Coretest connections. @@ -143,7 +143,7 @@ module novena_top .rxd_syn(i2c_rxd_syn), .rxd_data(i2c_rxd_data), .rxd_ack(i2c_rxd_ack), - + // Internal transmit interface. .txd_syn(i2c_txd_syn), .txd_data(i2c_txd_data), @@ -154,15 +154,15 @@ module novena_top ( .clk(clk), .reset_n(sys_rst_n), - + .rx_syn(i2c_rxd_syn), .rx_data(i2c_rxd_data), .rx_ack(i2c_rxd_ack), - + .tx_syn(i2c_txd_syn), .tx_data(i2c_txd_data), .tx_ack(i2c_txd_ack), - + // Interface to the core being tested. .core_reset_n(coretest_reset_n), .core_cs(coretest_cs), @@ -199,7 +199,7 @@ module novena_top .noise(ct_noise), .debug(ct_led) - ); + ); //---------------------------------------------------------------- |