Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,8 @@ __pycache__/
/.pdm-build
/.venv
/pdm.lock
/overrides.txt

# simulation
*.gtkw
*.vcd
5 changes: 4 additions & 1 deletion chipflow_digital_ip/processors/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
from ._openhw.cv32e40p import CV32E40P, OBIDebugModule
from minerva.core import Minerva

__all__ = ['CV32E40P', 'OBIDebugModule']
__all__ = ['CV32E40P', 'OBIDebugModule',
'Minerva'
]
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ dependencies = [
"chipflow-lib @ git+https://github.com/ChipFlow/chipflow-lib.git",
"amaranth-soc @ git+https://github.com/amaranth-lang/amaranth-soc",
"amaranth-stdio @ git+https://github.com/amaranth-lang/amaranth-stdio",
"minerva @ git+https://github.com/minerva-cpu/minerva",
]

# Build system configuration
Expand Down
Loading