We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently cynthion gateware targets "amaranth~=0.4.0". The next Amaranth release will be 0.5 which will bring some substantial changes: https://github.com/amaranth-lang/amaranth/blob/main/docs/changes.rst#version-05-unreleased
cynthion
"amaranth~=0.4.0"
Some of these affect the cynthion, luna and luna-soc gateware directly and, at the time of writing, include:
luna
luna-soc
Sample
Past
Stable
Rose
Fell
m.Case()
m.Default()
amaranth.hdl.rec.Record
from amaranth.vendor.lattice_ecp5 import LatticeECP5Platform
from amaranth.vendor import LatticeECP5Platform
There are also a number of corresponding changes happening in amaranth-soc that affect https://github.com/lambdaconcept/lambdasoc, including:
amaranth-soc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently
cynthion
gateware targets"amaranth~=0.4.0"
. The next Amaranth release will be 0.5 which will bring some substantial changes: https://github.com/amaranth-lang/amaranth/blob/main/docs/changes.rst#version-05-unreleasedSome of these affect the
cynthion
,luna
andluna-soc
gateware directly and, at the time of writing, include:Sample
,Past
,Stable
,Rose
andFell
helpers in favour of manually instantiated registers.m.Case()
with no pattern should be replaced withm.Default()
amaranth.hdl.rec.Record
will be deprecated in 0.5 and removed in 0.6from amaranth.vendor.lattice_ecp5 import LatticeECP5Platform
becomesfrom amaranth.vendor import LatticeECP5Platform
There are also a number of corresponding changes happening in
amaranth-soc
that affect https://github.com/lambdaconcept/lambdasoc, including:The text was updated successfully, but these errors were encountered: