Remove inside statement from assign

Apparently this is not synthesiseable for the bologna version
This commit is contained in:
Florian Zaruba 2017-05-18 18:09:50 +02:00
parent 5014996e71
commit e70f3d9db2

View file

@ -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