Commit 10adb5c6 authored by Tristan Gingold's avatar Tristan Gingold

Fix minor style issues.

parent 36ef1f9b
...@@ -535,7 +535,8 @@ begin ...@@ -535,7 +535,8 @@ begin
s_cram_waddr <= s_addr - c_BEG_CRAM; s_cram_waddr <= s_addr - c_BEG_CRAM;
s_cram_data <= s_cram(to_integer(s_cram_raddr) mod c_CRAM_SIZE); s_cram_data <= s_cram(to_integer(s_cram_raddr) mod c_CRAM_SIZE);
process (clk_i) begin process (clk_i)
begin
if rising_edge(clk_i) then if rising_edge(clk_i) then
if s_cram_we = '1' then if s_cram_we = '1' then
s_cram(to_integer(s_cram_waddr)) <= data_i; s_cram(to_integer(s_cram_waddr)) <= data_i;
...@@ -592,8 +593,8 @@ begin ...@@ -592,8 +593,8 @@ begin
s_csr_access, s_csr_data, s_csr_access, s_csr_data,
s_cram_access, s_cram_data, s_cram_access, s_cram_data,
s_user_cr_access, user_cr_data_i, s_user_cr_access, user_cr_data_i,
s_user_csr_access, user_csr_data_i s_user_csr_access, user_csr_data_i)
) begin begin
if s_cr_access = '1' then if s_cr_access = '1' then
data_o <= s_cr_data; data_o <= s_cr_data;
elsif s_csr_access = '1' then elsif s_csr_access = '1' then
......
...@@ -89,7 +89,8 @@ begin ...@@ -89,7 +89,8 @@ begin
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
-- Function priority encoder -- Function priority encoder
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
process (clk_i) begin process (clk_i)
begin
if rising_edge(clk_i) then if rising_edge(clk_i) then
s_function_sel <= 0; s_function_sel <= 0;
s_function_sel_valid <= '0'; s_function_sel_valid <= '0';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment