mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-24 22:27:10 -04:00
Static casts cause a compilation error with Verilator 4.109
This commit is contained in:
parent
6fd1a734e0
commit
d4605e3b0c
1 changed files with 4 additions and 4 deletions
|
@ -563,7 +563,7 @@ module ariane_testharness #(
|
|||
.test_en_i ( test_en ),
|
||||
.slave ( slave ),
|
||||
.master ( master ),
|
||||
.start_addr_i (addr_map_t'({
|
||||
.start_addr_i ({
|
||||
ariane_soc::DebugBase,
|
||||
ariane_soc::ROMBase,
|
||||
ariane_soc::CLINTBase,
|
||||
|
@ -574,8 +574,8 @@ module ariane_testharness #(
|
|||
ariane_soc::EthernetBase,
|
||||
ariane_soc::GPIOBase,
|
||||
ariane_soc::DRAMBase
|
||||
})),
|
||||
.end_addr_i (addr_map_t'({
|
||||
}),
|
||||
.end_addr_i ({
|
||||
ariane_soc::DebugBase + ariane_soc::DebugLength - 1,
|
||||
ariane_soc::ROMBase + ariane_soc::ROMLength - 1,
|
||||
ariane_soc::CLINTBase + ariane_soc::CLINTLength - 1,
|
||||
|
@ -586,7 +586,7 @@ module ariane_testharness #(
|
|||
ariane_soc::EthernetBase + ariane_soc::EthernetLength -1,
|
||||
ariane_soc::GPIOBase + ariane_soc::GPIOLength - 1,
|
||||
ariane_soc::DRAMBase + ariane_soc::DRAMLength - 1
|
||||
})),
|
||||
}),
|
||||
.valid_rule_i (ariane_soc::ValidRule)
|
||||
);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue