-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed wrong assertion at the monitor
Signed-off-by: Anderson Ignacio <[email protected]>
- Loading branch information
Showing
2 changed files
with
2 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# License : MIT license <Check LICENSE> | ||
# Author : Anderson I. da Silva (aignacio) <[email protected]> | ||
# Date : 27.10.2023 | ||
# Last Modified Date: 12.11.2023 | ||
# Last Modified Date: 13.11.2023 | ||
import cocotb | ||
import logging | ||
import random | ||
|
@@ -52,9 +52,6 @@ async def _mon_master_txn(self): | |
|
||
while True: | ||
await FallingEdge(self.clk) | ||
if self.bus.htrans.value.is_resolvable and self.bus.hready.value.is_resolvable: | ||
if self.bus.htrans.value == 0 and self.bus.hready == 0: | ||
raise AssertionError("AHB PROTOCOL VIOLATION - TEST") | ||
|
||
# print(f"pending: {pending}") | ||
# Ensure master does not change its qualifiers before hready | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.2.0" | ||
__version__ = "0.2.1" |