This commit is contained in:
Alex Mykyta
2023-02-16 19:22:22 -08:00
parent 7b16926e39
commit 6026e3398e
3 changed files with 7 additions and 4 deletions

View File

@@ -223,7 +223,7 @@ class FieldLogic:
set or clear side effect). set or clear side effect).
""" """
w_modifiable = field.is_sw_writable w_modifiable = field.is_sw_writable
r_modifiable = (field.get_property('onread') is not None) r_modifiable = field.get_property('onread') is not None
buffer_writes = field.parent.get_property('buffer_writes') buffer_writes = field.parent.get_property('buffer_writes')
buffer_reads = field.parent.get_property('buffer_reads') buffer_reads = field.parent.get_property('buffer_reads')
@@ -383,7 +383,7 @@ class FieldLogic:
The returned list is sorted in priority order - the conditional with highest The returned list is sorted in priority order - the conditional with highest
precedence is first in the list. precedence is first in the list.
""" """
sw_precedence = (field.get_property('precedence') == PrecedenceType.sw) sw_precedence = field.get_property('precedence') == PrecedenceType.sw
result = [] result = []
if sw_precedence: if sw_precedence:

View File

@@ -12,6 +12,9 @@ commands to be visible via the PATH environment variable.
* Go to the *Individual Files* tab. * Go to the *Individual Files* tab.
* Download Questa files. (Don't forget part 2!) * Download Questa files. (Don't forget part 2!)
* Install * Install
* Create an account on https://licensing.intel.com
* press "Enroll" to register
* After you confirm your email, go back to this page and press "Enroll" again to finish enrollment
* Go to https://licensing.intel.com/psg/s/sales-signup-evaluationlicenses * Go to https://licensing.intel.com/psg/s/sales-signup-evaluationlicenses
* Generate a free *Starter Edition* license file for Questa * Generate a free *Starter Edition* license file for Questa
* Easiest to use a *fixed* license using your NIC ID (MAC address of your network card via `ifconfig`) * Easiest to use a *fixed* license using your NIC ID (MAC address of your network card via `ifconfig`)

View File

@@ -567,5 +567,5 @@ preferred-modules=
# Exceptions that will emit a warning when being caught. Defaults to # Exceptions that will emit a warning when being caught. Defaults to
# "BaseException, Exception". # "BaseException, Exception".
overgeneral-exceptions=BaseException, overgeneral-exceptions=builtin.BaseException,
Exception builtin.Exception