Skip to content

Commit ba991f4

Browse files
committed
RFC #69: fix another editing error.
1 parent 527df0a commit ba991f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

text/0069-simulation-port.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ The `amaranth.lib.io.Buffer` component is changed to accept `SimulationPort`s an
101101

102102
```python
103103
m.d.comb += [
104-
buffer.i.eq(Cat(Mux(port.oe, o, i) for o, i in zip(port.o, port.i))),
104+
buffer.i.eq(Cat(Mux(oe, o, i) for oe, o, i in zip(port.oe, port.o, port.i))),
105105
port.o.eq(buffer.o),
106106
port.oe.eq(buffer.oe.replicate(len(port))),
107107
]
@@ -111,7 +111,7 @@ The `amaranth.lib.io.FFBuffer` component is changed to accept `SimulationPort`s
111111

112112
```python
113113
m.d[buffer.i_domain] += [
114-
buffer.i.eq(Cat(Mux(port.oe, o, i) for o, i in zip(port.o, port.i))),
114+
buffer.i.eq(Cat(Mux(oe, o, i) for oe, o, i in zip(port.oe, port.o, port.i))),
115115
]
116116
m.d[buffer.o_domain] += [
117117
port.o.eq(buffer.o),

0 commit comments

Comments
 (0)