Skip to content

Commit

Permalink
chore: rename error scalar
Browse files Browse the repository at this point in the history
Signed-off-by: rishyak <hello@rishyak.com>
  • Loading branch information
rishyak committed Mar 4, 2024
1 parent 7313734 commit 3320bea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rtl/apb/interfaces/APBCommon_if.sv
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
@logic strb write strobe
@logic ready indicates completion of previous transfer
@logic rData read data from peripherals to mux
@logic slvError transfer error, high/error low/okay
@logic subError transfer error, high/error low/okay
*/
interface APBCommon_if #(
AddrWidth = 32,
Expand All @@ -41,7 +41,7 @@ interface APBCommon_if #(
logic [DataWidth/8 - 1:0] strb;
logic ready;
logic [DataWidth - 1:0] rData;
logic slvError;
logic subError;

modport bridge(
input clk,
Expand Down

0 comments on commit 3320bea

Please sign in to comment.