fix(AXI4Lite): add `wstrb` to AXI4Lite interface (#4818)
EMU Test / Changes Detection (push) Has been cancelled Details
Release Jobs / build-xsdev-image (push) Has been cancelled Details
EMU Test / Generate Verilog (push) Has been cancelled Details
EMU Test / EMU - Basics (push) Has been cancelled Details
EMU Test / EMU - CHI (push) Has been cancelled Details
EMU Test / Docker Build (push) Has been cancelled Details
EMU Test / EMU - Performance (push) Has been cancelled Details
EMU Test / EMU - MC (push) Has been cancelled Details
EMU Test / SIMV - Basics (push) Has been cancelled Details
EMU Test / Upload Artifacts (push) Has been cancelled Details
EMU Test / Check Submodules (push) Has been cancelled Details
EMU Test / Check Format (push) Has been cancelled Details

This commit is contained in:
four six 2025-06-19 12:11:01 +05:00 committed by GitHub
parent 167c0de538
commit 167da6a8fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -31,6 +31,7 @@ class AXI4LiteBundleAW(addrWidth: Int, idWidth: Int = 0) extends AXI4LiteBundleA
class AXI4LiteBundleW(dataWidth: Int) extends Bundle {
val data = UInt(dataWidth.W)
val strb = UInt((dataWidth/8).W)
}
class AXI4LiteBundleR(dataWidth: Int, idWidth: Int = 0) extends Bundle {