Skip to content

Commit

Permalink
cappuccino/fetch: deassert ibus_req on rst
Browse files Browse the repository at this point in the history
  • Loading branch information
skristiansson committed May 9, 2014
1 parent aa77169 commit e0e2f05
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rtl/verilog/mor1kx_fetch_cappuccino.v
Expand Up @@ -423,8 +423,10 @@ module mor1kx_fetch_cappuccino
state <= IDLE;
endcase // case (state)

if (rst)
state <= IDLE;
if (rst) begin
ibus_req <= 0;
state <= IDLE;
end
end

always @(posedge clk `OR_ASYNC_RST)
Expand Down

0 comments on commit e0e2f05

Please sign in to comment.