Add vpi_handle_multi to libvpi
This commit is contained in:
parent
7beadb92f8
commit
f6e4b6d381
|
|
@ -60,6 +60,11 @@ vpiHandle vpi_handle_by_index(vpiHandle ref, PLI_INT32 idx)
|
|||
assert(vpip_routines);
|
||||
return vpip_routines->handle_by_index(ref, idx);
|
||||
}
|
||||
vpiHandle vpi_handle_multi(PLI_INT32 type, vpiHandle ref1, vpiHandle ref2)
|
||||
{
|
||||
assert(vpip_routines);
|
||||
return vpip_routines->handle_multi(type, ref1, ref2);
|
||||
}
|
||||
|
||||
// for traversing relationships
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue