diff options
Diffstat (limited to 'usrp2')
-rw-r--r-- | usrp2/opencores/zpu/zpu_wb_top.vhd | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usrp2/opencores/zpu/zpu_wb_top.vhd b/usrp2/opencores/zpu/zpu_wb_top.vhd index d3cf96c9c..9f4b75843 100644 --- a/usrp2/opencores/zpu/zpu_wb_top.vhd +++ b/usrp2/opencores/zpu/zpu_wb_top.vhd @@ -35,7 +35,8 @@ entity zpu_wb_top is stb_o: out std_logic; -- misc zpu signals - interrupt: in std_logic + interrupt: in std_logic; + zpu_status: out std_logic_vector(63 downto 0) ); end zpu_wb_top; @@ -65,6 +66,7 @@ zpu_system0: zpu_system port map( areset => rst, enable => enb, interrupt => interrupt, + zpu_status => zpu_status, zpu_wb_i => zpu_wb_i, zpu_wb_o => zpu_wb_o ); |