Skip to content

Commit

Permalink
Default AHB Slave hreadyout == 1 to match spec
Browse files Browse the repository at this point in the history
Signed-off-by: Anderson Ignacio da Silva <anderson@aignacio.com>
  • Loading branch information
aignacio committed Sep 9, 2024
1 parent db1eba0 commit eb2baf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cocotbext/ahb/ahb_slave.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ async def _proc_txn(self):
cur_hresp = copy.deepcopy(self.bus.hresp.value)

# Default values in case there is no txn
self.bus.hready.value = self._get_def(1)
self.bus.hready.value = 1 # self._get_def(1)
self.bus.hresp.value = AHBResp.OKAY

if self.bp is not None:
Expand Down
2 changes: 1 addition & 1 deletion cocotbext/ahb/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.6"
__version__ = "0.3.7"

0 comments on commit eb2baf4

Please sign in to comment.