diff options
author | Paul Selkirk <paul@psgd.org> | 2015-03-25 01:05:30 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2015-03-25 01:05:30 -0400 |
commit | 2b874d345b386b1e037756e9fa5c05905f7444cf (patch) | |
tree | b9f0ed982c2dae3b9260e0d293cbf2d30d941c15 /eim/rtl | |
parent | 283bfbeeb7fb5767815c10ea98bb155638d4bfb3 (diff) |
integrate trng into core_selector framework
Diffstat (limited to 'eim/rtl')
-rw-r--r-- | eim/rtl/novena_eim.v | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/eim/rtl/novena_eim.v b/eim/rtl/novena_eim.v index fbff86c..d2b11ed 100644 --- a/eim/rtl/novena_eim.v +++ b/eim/rtl/novena_eim.v @@ -146,22 +146,17 @@ module novena_top .sys_clk(sys_clk), .sys_rst(sys_rst), + .noise(ct_noise), + .sys_eim_addr(sys_eim_addr), .sys_eim_wr(sys_eim_wr), .sys_eim_rd(sys_eim_rd), .sys_write_data(sys_eim_dout), - .sys_read_data(sys_eim_din) - ); + .sys_read_data(sys_eim_din), - - //---------------------------------------------------------------- - // Cryptech Logic - // - // Logic specific to the Cryptech use of the Novena. - // Currently we just hard wire the LED outputs. - //---------------------------------------------------------------- - assign ct_led = {8{ct_noise}}; + .debug(ct_led) + ); //---------------------------------------------------------------- |