Skip to content

Commit

Permalink
Fix FST mode (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgherbst authored May 24, 2024
1 parent 78944ec commit 0fdd11b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setuptools import setup, find_packages
from pybind11.setup_helpers import Pybind11Extension, build_ext

__version__ = "0.2.2"
__version__ = "0.2.3"

#################################################################################
# parse_reqs, long_desc from https://github.com/siliconcompiler/siliconcompiler #
Expand Down
4 changes: 2 additions & 2 deletions switchboard/sbdut.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,10 @@ def __init__(

if trace:
self.set('option', 'trace', True)
self.set('option', 'define', 'SB_TRACE')
self.add('option', 'define', 'SB_TRACE')

if self.trace_type == 'fst':
self.set('option', 'define', 'SB_TRACE_FST')
self.add('option', 'define', 'SB_TRACE_FST')

if tool == 'icarus':
self._configure_icarus()
Expand Down

0 comments on commit 0fdd11b

Please sign in to comment.