Skip to content

Commit

Permalink
[sim] minor testbench edits
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Jan 7, 2025
1 parent 0948942 commit a9d5549
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions sim/neorv32_tb.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,13 @@ architecture neorv32_tb_rtl of neorv32_tb is
signal msi, mei, mti : std_ulogic;

-- slink --
type slink_t is record
data : std_ulogic_vector(31 downto 0); -- data
addr : std_ulogic_vector(3 downto 0); -- source/destination ID
valid : std_ulogic; -- source valid
last : std_ulogic; -- last element of packet
ready : std_ulogic; -- sink ready
end record;
signal slink_tx, slink_rx : slink_t;

-- XBUS (Wishbone b4) bus --
Expand Down

0 comments on commit a9d5549

Please sign in to comment.