mirror of
https://github.com/Silicon1602/srdl2sv.git
synced 2024-11-13 02:53:37 +00:00
Flops must not update when HREADYOUT == 0, not when r2b.rdy == 0
This commit is contained in:
parent
a27b57009b
commit
85aa2f903c
@ -111,7 +111,7 @@ module srdl2sv_amba3ahblite
|
||||
begin
|
||||
// When a transfer is extended it has the side-effecxt
|
||||
// of extending the address phase of the next transfer
|
||||
if (r2b.rdy)
|
||||
if (HREADYOUT)
|
||||
begin
|
||||
addr_q <= HADDR;
|
||||
operation_q <= HWRITE ? WRITE : READ;
|
||||
@ -119,7 +119,7 @@ module srdl2sv_amba3ahblite
|
||||
end
|
||||
SEQ:
|
||||
begin
|
||||
if (r2b.rdy)
|
||||
if (HREADYOUT)
|
||||
begin
|
||||
addr_q <= addr_q; // TODO
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user