diff options
Diffstat (limited to 'i2c/rtl')
-rw-r--r-- | i2c/rtl/novena_i2c.v | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/i2c/rtl/novena_i2c.v b/i2c/rtl/novena_i2c.v index d1833b2..c70f691 100644 --- a/i2c/rtl/novena_i2c.v +++ b/i2c/rtl/novena_i2c.v @@ -69,7 +69,12 @@ module novena_top wire sys_clk; wire sys_rst; - novena_clkmgr clkmgr + novena_clkmgr # + ( + .CLK_OUT_MUL (2), // 2..32 + .CLK_OUT_DIV (2) // 1..32 + ) + clkmgr ( .gclk_p(gclk_p_pin), .gclk_n(gclk_n_pin), |