Skip to content

Commit d1f43c9

Browse files
committed
fix ordering of rx data
1 parent 5cc5792 commit d1f43c9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/scala/tilelink/UCITLFront.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -472,10 +472,10 @@ class UCITLFront(
472472
// rxTLPayload.denied := uciRxPayload.header2.denied
473473
// rxTLPayload.corrupt := uciRxPayload.header2.corrupt
474474
rxTLPayload.data := Cat(
475-
uciRxPayload.data(0),
476-
uciRxPayload.data(1),
477-
uciRxPayload.data(2),
478475
uciRxPayload.data(3),
476+
uciRxPayload.data(2),
477+
uciRxPayload.data(1),
478+
uciRxPayload.data(0),
479479
)
480480
rxTLPayload.msgType := uciRxPayload.cmd.msgType
481481
}

0 commit comments

Comments
 (0)