mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 12:12:39 +00:00
expose packed vectors via the VPI (#2900)
This commit is contained in:
parent
dd0c2cac9b
commit
f450d51de1
@ -789,7 +789,7 @@ void EmitCSyms::emitSymImp() {
|
||||
}
|
||||
}
|
||||
//
|
||||
if (pdim > 1 || udim > 1) {
|
||||
if (udim > 1 && (pdim && udim)) {
|
||||
puts("//UNSUP "); // VerilatedImp can't deal with >2d or packed arrays
|
||||
}
|
||||
puts(protect("__Vscope_" + it->second.m_scopeName) + ".varInsert(__Vfinal,");
|
||||
|
@ -168,6 +168,7 @@ int mon_check_props() {
|
||||
{"testout", {24, vpiOutput, 0, vpiPort}, {0, 0, 0, 0}},
|
||||
{"sub.subin", {1, vpiInput, 1, vpiPort}, {0, 0, 0, 0}},
|
||||
{"sub.subout", {1, vpiOutput, 1, vpiPort}, {0, 0, 0, 0}},
|
||||
{"twobytwo", {2, vpiNoDirection, 0, vpiMemory}, {2, vpiNoDirection, 0, vpiMemoryWord}},
|
||||
{NULL, {0, 0, 0, 0}, {0, 0, 0, 0}}};
|
||||
struct params* value = values;
|
||||
while (value->signal) {
|
||||
|
@ -42,12 +42,13 @@ extern "C" int mon_check();
|
||||
reg [2:1] twoone `PUBLIC_FLAT_RW;
|
||||
reg onetwo [1:2] `PUBLIC_FLAT_RW;
|
||||
reg [2:1] fourthreetwoone[4:3] `PUBLIC_FLAT_RW;
|
||||
reg [1:0] [1:0] twobytwo `PUBLIC_FLAT_RW;
|
||||
|
||||
integer status;
|
||||
|
||||
`ifdef IVERILOG
|
||||
// stop icarus optimizing signals away
|
||||
wire redundant = onebit | onetwo[1] | twoone | fourthreetwoone[3];
|
||||
wire redundant = onebit | onetwo[1] | twoone | fourthreetwoone[3] | twobytwo;
|
||||
`endif
|
||||
|
||||
wire subin `PUBLIC_FLAT_RD;
|
||||
|
Loading…
Reference in New Issue
Block a user