mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-23 13:47:13 -04:00
Remove inside statement from assign
Apparently this is not synthesiseable for the bologna version
This commit is contained in:
parent
5014996e71
commit
e70f3d9db2
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ module prefetch_buffer
|
|||
//---------------------------------
|
||||
// we are busy if we are either waiting for a grant
|
||||
// or if the fifo is full
|
||||
assign busy_o = (CS inside {WAIT_GNT, WAIT_ABORTED} && !instr_req_o) || !fifo_ready;
|
||||
assign busy_o = (CS == WAIT_GNT || CS == WAIT_ABORTED} && !instr_req_o) || !fifo_ready;
|
||||
assign fetch_address = {fetch_address_i[63:2], 2'b0};
|
||||
//---------------------------------
|
||||
// Fetch FIFO
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue