Skip to content

Commit

Permalink
Fix xsim compatibility quirk
Browse files Browse the repository at this point in the history
  • Loading branch information
amykyta3 committed Sep 8, 2023
1 parent ad7b09a commit 7bb6c0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/lib/cpuifs/avalon/avalon_mm_intf_driver.sv
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ interface avalon_mm_intf_driver #(
input wire rst,
avalon_mm_intf.host avalon
);
localparam ADDR_PAD = $clog2(DATA_WIDTH/8);
localparam WORD_ADDR_WIDTH = ADDR_WIDTH - ADDR_PAD;

timeunit 1ps;
timeprecision 1ps;

localparam ADDR_PAD = $clog2(DATA_WIDTH/8);
localparam WORD_ADDR_WIDTH = ADDR_WIDTH - ADDR_PAD;

logic av_read;
logic av_write;
logic av_waitrequest;
Expand Down

0 comments on commit 7bb6c0c

Please sign in to comment.