88
99
1010class R (FieldAction ):
11- """A read-only :class:`FieldAction`.
11+ """A read-only :class:`. FieldAction`.
1212
1313 Arguments
1414 ---------
@@ -17,12 +17,12 @@ class R(FieldAction):
1717
1818 Attributes
1919 ----------
20- port : :class:`FieldPort`
20+ port : :class:`. FieldPort`
2121 Field port.
2222 r_data : :pc:`unsigned(shape)`
23- Read data. Drives ``port.r_data``. See :class:`FieldPort`.
23+ Read data. Drives ``port.r_data``. See :class:`. FieldPort`.
2424 r_stb : :pc:`unsigned(data)`
25- Read strobe. Driven by ``port.r_stb``. See :class:`FieldPort`.
25+ Read strobe. Driven by ``port.r_stb``. See :class:`. FieldPort`.
2626 """
2727 def __init__ (self , shape ):
2828 super ().__init__ (shape , access = "r" , members = {
@@ -40,7 +40,7 @@ def elaborate(self, platform):
4040
4141
4242class W (FieldAction ):
43- """A write-only :class:`FieldAction`.
43+ """A write-only :class:`. FieldAction`.
4444
4545 Arguments
4646 ---------
@@ -49,12 +49,12 @@ class W(FieldAction):
4949
5050 Attributes
5151 ----------
52- port : :class:`FieldPort`
52+ port : :class:`. FieldPort`
5353 Field port.
5454 w_data : :pc:`unsigned(shape)`
55- Write data. Driven by ``port.w_data``. See :class:`FieldPort`.
55+ Write data. Driven by ``port.w_data``. See :class:`. FieldPort`.
5656 w_stb : :pc:`unsigned(shape)`
57- Write strobe. Driven by ``port.w_stb``. See :class:`FieldPort`.
57+ Write strobe. Driven by ``port.w_stb``. See :class:`. FieldPort`.
5858 """
5959 def __init__ (self , shape ):
6060 super ().__init__ (shape , access = "w" , members = {
@@ -72,7 +72,7 @@ def elaborate(self, platform):
7272
7373
7474class RW (FieldAction ):
75- """A read/write :class:`FieldAction`, with built-in storage.
75+ """A read/write :class:`. FieldAction`, with built-in storage.
7676
7777 Storage is updated with the value of ``port.w_data`` one clock cycle after ``port.w_stb`` is
7878 asserted.
@@ -86,7 +86,7 @@ class RW(FieldAction):
8686
8787 Attributes
8888 ----------
89- port : :class:`FieldPort`
89+ port : :class:`. FieldPort`
9090 Field port.
9191 data : :pc:`unsigned(shape)`
9292 Storage output.
@@ -123,7 +123,7 @@ def elaborate(self, platform):
123123
124124
125125class RW1C (FieldAction ):
126- """A read/write-one-to-clear :class:`FieldAction`, with built-in storage.
126+ """A read/write-one-to-clear :class:`. FieldAction`, with built-in storage.
127127
128128 Storage bits are:
129129
@@ -141,7 +141,7 @@ class RW1C(FieldAction):
141141
142142 Attributes
143143 ----------
144- port : :class:`FieldPort`
144+ port : :class:`. FieldPort`
145145 Field port.
146146 data : :pc:`unsigned(shape)`
147147 Storage output.
@@ -184,7 +184,7 @@ def elaborate(self, platform):
184184
185185
186186class RW1S (FieldAction ):
187- """A read/write-one-to-set :class:`FieldAction`, with built-in storage.
187+ """A read/write-one-to-set :class:`. FieldAction`, with built-in storage.
188188
189189 Storage bits are:
190190
@@ -202,7 +202,7 @@ class RW1S(FieldAction):
202202
203203 Attributes
204204 ----------
205- port : :class:`FieldPort`
205+ port : :class:`. FieldPort`
206206 Field port.
207207 data : :pc:`unsigned(shape)`
208208 Storage output.
@@ -255,7 +255,7 @@ class _Reserved(FieldAction):
255255
256256 Attributes
257257 ----------
258- port : :class:`FieldPort`
258+ port : :class:`. FieldPort`
259259 Field port.
260260 """
261261 def __init__ (self , shape ):
@@ -267,23 +267,23 @@ def elaborate(self, platform):
267267
268268class ResRAW0 (_Reserved ):
269269 __doc__ = _Reserved ._doc_template .format (description = """
270- A reserved read-any/write-zero :class:`FieldAction`.
270+ A reserved read-any/write-zero :class:`. FieldAction`.
271271 """ )
272272
273273
274274class ResRAWL (_Reserved ):
275275 __doc__ = _Reserved ._doc_template .format (description = """
276- A reserved read-any/write-last :class:`FieldAction`.
276+ A reserved read-any/write-last :class:`. FieldAction`.
277277 """ )
278278
279279
280280class ResR0WA (_Reserved ):
281281 __doc__ = _Reserved ._doc_template .format (description = """
282- A reserved read-zero/write-any :class:`FieldAction`.
282+ A reserved read-zero/write-any :class:`. FieldAction`.
283283 """ )
284284
285285
286286class ResR0W0 (_Reserved ):
287287 __doc__ = _Reserved ._doc_template .format (description = """
288- A reserved read-zero/write-zero :class:`FieldAction`.
288+ A reserved read-zero/write-zero :class:`. FieldAction`.
289289 """ )
0 commit comments