-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A step towards amaranth
v0.5.0
(#577)
- Loading branch information
1 parent
090f271
commit 0e4f74d
Showing
38 changed files
with
456 additions
and
86 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
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
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
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
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
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
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,3 +1,3 @@ | ||
amaranth-yosys==0.35.0.0.post81 | ||
git+https://github.com/amaranth-lang/amaranth@94c504afc7d81738ecdc9523a2615ef43ecbf51a | ||
git+https://github.com/amaranth-lang/amaranth@115954b4d957b4ba642ad056ab1670bf5d185fb6 | ||
dataclasses-json==0.6.3 |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import sys | ||
import warnings | ||
|
||
__all__ = ["UnusedMustUse", "MustUse"] | ||
|
||
|
||
class UnusedMustUse(Warning): | ||
pass | ||
|
||
|
||
class MustUse: | ||
_MustUse__silence : bool | ||
_MustUse__warning : UnusedMustUse |
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
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,13 +1,29 @@ | ||
""" | ||
This type stub file was generated by pyright. | ||
""" | ||
|
||
from .ast import Array, C, Cat, ClockSignal, Const, Mux, Repl, ResetSignal, Shape, Signal, Value, signed, unsigned | ||
from .dsl import Module | ||
from .cd import ClockDomain | ||
from .ir import Elaboratable, Fragment, Instance | ||
from .mem import Memory | ||
from ._ast import Shape, unsigned, signed, ShapeCastable, ShapeLike | ||
from ._ast import Value, ValueCastable, ValueLike | ||
from ._ast import Const, C, Mux, Cat, Array, Signal, ClockSignal, ResetSignal | ||
from ._dsl import SyntaxError, SyntaxWarning, Module | ||
from ._cd import DomainError, ClockDomain | ||
from ._ir import UnusedElaboratable, Elaboratable, DriverConflict, Fragment, Instance | ||
from ._mem import Memory, ReadPort, WritePort, DummyPort | ||
from .rec import Record | ||
from .xfrm import DomainRenamer, EnableInserter, ResetInserter | ||
from ._xfrm import DomainRenamer, ResetInserter, EnableInserter | ||
|
||
|
||
__all__ = ["Shape", "unsigned", "signed", "Value", "Const", "C", "Mux", "Cat", "Repl", "Array", "Signal", "ClockSignal", "ResetSignal", "Module", "ClockDomain", "Elaboratable", "Fragment", "Instance", "Memory", "Record", "DomainRenamer", "ResetInserter", "EnableInserter"] | ||
__all__ = [ | ||
# _ast | ||
"Shape", "unsigned", "signed", "ShapeCastable", "ShapeLike", | ||
"Value", "ValueCastable", "ValueLike", | ||
"Const", "C", "Mux", "Cat", "Array", "Signal", "ClockSignal", "ResetSignal", | ||
# _dsl | ||
"SyntaxError", "SyntaxWarning", "Module", | ||
# _cd | ||
"DomainError", "ClockDomain", | ||
# _ir | ||
"UnusedElaboratable", "Elaboratable", "DriverConflict", "Fragment", "Instance", | ||
# _mem | ||
"Memory", "ReadPort", "WritePort", "DummyPort", | ||
# _rec | ||
"Record", | ||
# _xfrm | ||
"DomainRenamer", "ResetInserter", "EnableInserter", | ||
] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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
File renamed without changes.
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
""" | ||
This type stub file was generated by pyright. | ||
""" | ||
|
||
from ._lattice_ecp5 import LatticeECP5Platform | ||
from ._lattice_ice40 import LatticeICE40Platform | ||
|
||
__all__ = ["LatticeECP5Platform", "LatticeICE40Platform"] |
Oops, something went wrong.