Skip to content

Commit

Permalink
Fix docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
tilk committed Mar 11, 2024
1 parent ff84193 commit 3ef0e5b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions coreblocks/peripherals/wishbone.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ class PipelinedWishboneMaster(Component):
Attributes
----------
wb: Record (like WishboneLayout)
wb: WishboneInterface
Wishbone bus output.
request: Method
Transactional method to start a new Wishbone request.
Expand Down Expand Up @@ -309,10 +309,10 @@ class WishboneMuxer(Component):
Parameters
----------
master_wb: Record (like WishboneLayout)
Record of master inteface.
slaves: list[Record]
List of connected slaves' Wishbone Records (like WishboneLayout).
master_wb: WishboneInterface
Master inteface.
slaves: list of WishboneInterface
List of connected slaves' Wishbone interfaces.
ssel_tga: Signal
Signal that selects the slave to connect. Signal width is the number of slaves and each bit coresponds
to a slave. This signal is a Wishbone TGA (address tag), so it needs to be valid every time Wishbone STB
Expand Down Expand Up @@ -383,10 +383,10 @@ class WishboneArbiter(Component):
Parameters
----------
slave_wb: Record (like WishboneLayout)
Record of slave inteface.
masters: list[Record]
List of master interface Records.
slave_wb: WishboneInterface
Slave inteface.
masters: list of WishboneInterface
List of master interfaces.
"""

slave_wb: WishboneInterface
Expand Down Expand Up @@ -465,8 +465,8 @@ class WishboneMemorySlave(Component):
Attributes
----------
bus: Record (like WishboneLayout)
Wishbone bus record.
bus: WishboneInterface
Wishbone bus interface.
"""

bus: WishboneInterface
Expand Down

0 comments on commit 3ef0e5b

Please sign in to comment.