Skip to content

Commit

Permalink
Remove rand specifier of parameterized unpacked array
Browse files Browse the repository at this point in the history
Signed-off-by: Ryszard Rozak <[email protected]>
  • Loading branch information
RRozak committed Oct 24, 2024
1 parent dacd8c4 commit 30d809c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/riscv_page_table.sv
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class riscv_page_table#(satp_mode_t MODE = SV39) extends uvm_object;
int unsigned table_id; // Page table ID
bit [1:0] level; // Page table level
bit [XLEN-1:0] pte_binary[]; // Page table entry in binary format
rand riscv_page_table_entry#(MODE) pte[]; // List of all page table entries
riscv_page_table_entry#(MODE) pte[]; // List of all page table entries

`uvm_object_param_utils(riscv_page_table#(MODE))
`uvm_object_new
Expand Down

0 comments on commit 30d809c

Please sign in to comment.