Skip to content

Commit

Permalink
🐛 fix in apb2jtag to get Leon3 sim to compile
Browse files Browse the repository at this point in the history
  • Loading branch information
jzuckerman committed Feb 23, 2023
1 parent fedf52c commit 8dcc9f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtl/sockets/jtag/apb2jtag.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ architecture rtl of apb2jtag is
constant reg_a2j_pindex : integer range 0 to NAPBSLV - 1 := 0;
constant reg_a2j_paddr : integer range 0 to 4095 := 16#100#;
constant reg_a2j_pmask : integer range 0 to 4095 := 16#FFF#;
constant invld_flit : std_logic_vector(NOC_FLIT_SIZE+8 downto 0) := X"000000000000000000" & "101";
constant invld_flit : std_logic_vector(NOC_FLIT_SIZE+8 downto 0) := conv_std_logic_vector(5, NOC_FLIT_SIZE+8);
signal this_paddr, this_pmask : integer range 0 to 4095;
signal this_pirq : integer range 0 to 15;

Expand Down

0 comments on commit 8dcc9f0

Please sign in to comment.