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