Skip to content
This repository has been archived by the owner on Nov 23, 2021. It is now read-only.

Commit

Permalink
fixed error in signal conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Apr 18, 2020
1 parent 6ba8054 commit 4214b13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rtl/top_templates/neo430_top_avm.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ begin
spi_mosi_o <= std_logic(spi_mosi_o_int);
spi_cs_o <= std_logic_vector(spi_cs_o_int);
ext_ack_o <= std_logic_vector(irq_ack_o_int);
freq_gen_o <= std_logic(freq_gen_o_int);
freq_gen_o <= std_logic_vector(freq_gen_o_int);


-- Wishbone-to-Avalon Bridge ------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion rtl/top_templates/neo430_top_axi4lite.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ begin
spi_mosi_o <= std_logic(spi_mosi_o_int);
spi_cs_o <= std_logic_vector(spi_cs_o_int);
ext_ack_o <= std_logic_vector(irq_ack_o_int);
freq_gen_o <= std_logic(freq_gen_o_int);
freq_gen_o <= std_logic_vector(freq_gen_o_int);


-- Wishbone-to-AXI4-Lite-compatible Bridge ----------------------------------
Expand Down
2 changes: 1 addition & 1 deletion rtl/top_templates/neo430_top_std_logic.vhd
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ begin
wb_stb_o <= std_logic(wb_stb_o_int);
wb_cyc_o <= std_logic(wb_cyc_o_int);
ext_ack_o <= std_logic_vector(irq_ack_o_int);
freq_gen_o <= std_logic(freq_gen_o_int);
freq_gen_o <= std_logic_vector(freq_gen_o_int);


end neo430_top_std_logic_rtl;

0 comments on commit 4214b13

Please sign in to comment.