You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In gpmc_wishbone_wrapper_aad.vhd I spotted a possible mistake but not sure if you meant to implement it that way.
In the gen_burst process isnt it wrong to increment the gpmc_counter if iob_oen and iob_wen are 0?
Should it not be an OR instead of AND as OEN and WEN will never be low at the same time
if ((iob_oen or iob_wen) = '0') then
gpmc_counter <= gpmc_counter + '1';
Thanks
Ilia
The text was updated successfully, but these errors were encountered:
Hi
In gpmc_wishbone_wrapper_aad.vhd I spotted a possible mistake but not sure if you meant to implement it that way.
In the gen_burst process isnt it wrong to increment the gpmc_counter if iob_oen and iob_wen are 0?
Should it not be an OR instead of AND as OEN and WEN will never be low at the same time
if ((iob_oen or iob_wen) = '0') then
gpmc_counter <= gpmc_counter + '1';
Thanks
Ilia
The text was updated successfully, but these errors were encountered: