File tree 3 files changed +26
-14
lines changed
3 files changed +26
-14
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,11 @@ jobs:
62
62
strategy :
63
63
fail-fast : false
64
64
matrix :
65
- project :
66
- - amaranth-lang/amaranth-boards
67
- - amaranth-lang/amaranth-stdio
68
- - amaranth-lang/amaranth-soc
69
- name : ' smoke (${{ matrix.project }})'
65
+ project : # test the last commit before dropping py3.8
66
+ - { name: amaranth-lang/amaranth-boards, ref: 19b97324ecf9111c5d16377af79f82aad761c476 }
67
+ - { name: amaranth-lang/amaranth-stdio, ref: 2da45b8e75421879d1096495a4fb438de705f567 }
68
+ - { name: amaranth-lang/amaranth-soc, ref: 746709e1e992bccf6e2362450243cafd00d72a14 }
69
+ name : ' smoke (${{ matrix.project.name }})'
70
70
steps :
71
71
- name : Check out Amaranth source code
72
72
uses : actions/checkout@v4
76
76
- name : Check out source code
77
77
uses : actions/checkout@v4
78
78
with :
79
- repository : ${{ matrix.project }}
79
+ repository : ${{ matrix.project.name }}
80
+ ref : ${{ matrix.project.ref }}
80
81
path : project
81
82
fetch-depth : 0
82
83
- name : Set up PDM
Original file line number Diff line number Diff line change 3
3
import argparse
4
4
import importlib
5
5
6
+ from amaranth .lib .wiring import Signature
7
+
6
8
from .hdl import Signal , Record , Elaboratable
7
9
from .back import rtlil
8
10
@@ -68,12 +70,14 @@ def _serve_yosys(modules):
68
70
69
71
try :
70
72
elaboratable = modules [module_name ](* args , ** kwargs )
71
- ports = []
72
- # By convention, any public attribute that is a Signal or a Record is
73
- # considered a port.
74
- for port_name , port in vars (elaboratable ).items ():
75
- if not port_name .startswith ("_" ) and isinstance (port , (Signal , Record )):
76
- ports += port ._lhs_signals ()
73
+ ports = None
74
+ if not (hasattr (elaboratable , "signature" ) and isinstance (elaboratable .signature , Signature )):
75
+ ports = []
76
+ # By convention, any public attribute that is a Signal or a Record is
77
+ # considered a port.
78
+ for port_name , port in vars (elaboratable ).items ():
79
+ if not port_name .startswith ("_" ) and isinstance (port , (Signal , Record )):
80
+ ports += port ._lhs_signals ()
77
81
rtlil_text = rtlil .convert (elaboratable , name = module_name , ports = ports )
78
82
response = {"frontend" : "ilang" , "source" : rtlil_text }
79
83
except Exception as error :
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Documentation for past releases
9
9
10
10
Documentation for past releases of the Amaranth language and toolchain is available online:
11
11
12
+ * `Amaranth 0.5.3 <https://amaranth-lang.org/docs/amaranth/v0.5.3/ >`_
12
13
* `Amaranth 0.5.2 <https://amaranth-lang.org/docs/amaranth/v0.5.2/ >`_
13
14
* `Amaranth 0.5.1 <https://amaranth-lang.org/docs/amaranth/v0.5.1/ >`_
14
15
* `Amaranth 0.5.0 <https://amaranth-lang.org/docs/amaranth/v0.5.0/ >`_
@@ -21,8 +22,8 @@ Documentation for past releases of the Amaranth language and toolchain is availa
21
22
* `Amaranth 0.3 <https://amaranth-lang.org/docs/amaranth/v0.3/ >`_
22
23
23
24
24
- Version 0.5.3 (unreleased)
25
- ==========================
25
+ Version 0.5.3
26
+ =============
26
27
27
28
28
29
Language changes
@@ -31,6 +32,12 @@ Language changes
31
32
* Added: individual bits of the same signal can now be assigned from different modules or domains.
32
33
33
34
35
+ Toolchain changes
36
+ -----------------
37
+
38
+ * Added: the Amaranth RPC server can now elaborate :class: `amaranth.lib.wiring.Component ` objects on demand.
39
+
40
+
34
41
Version 0.5.2
35
42
=============
36
43
You can’t perform that action at this time.
0 commit comments