Fix HSIZE and HBURST signal widths in PMA checker

This commit is contained in:
Thomas Fleming 2021-04-23 20:11:43 -04:00
parent 50df9d11e1
commit 6f23858609
2 changed files with 5 additions and 3 deletions

View File

@ -29,12 +29,13 @@
module pmachecker (
input logic [31:0] HADDR,
input logic HSIZE,
input logic [2:0] HSIZE,
input logic HWRITE,
input logic HBURST,
input logic [2:0] HBURST,
input logic Atomic, Execute, Write, Read,
// *** Add pipeline suffixes
output logic Cacheable, Idempotent, AtomicAllowed,
output logic SquashAHBAccess,

View File

@ -56,7 +56,8 @@ module privileged (
// PMA checker signals
input logic [31:0] HADDR,
input logic HSIZE, HWRITE, HBURST,
input logic [2:0] HSIZE, HBURST,
input logic HWRITE,
input logic Atomic, Execute, Write, Read,
output logic Cacheable, Idempotent, AtomicAllowed,
output logic SquashAHBAccess,