nmpPath<NameSpace>To<NameSpace>
nmpPath<NameSpace>To<NameSpace>(t_Inst) =>t_Inst/ nil
Description
Converts a simple instance vector from the first name space to the second name space.
Arguments
|
A simple (non-hierarchical) instance vector you want to convert to another name space. |
Value Returned
Examples
Converting simple instance vectors in the CDBA namespace to the VHDL namespace.
nmpPathCDBAToVHDL( "i8<0:3>" ) => "i8(0 to 3)"
nmpPathCDBAToVHDL( "I8<0:3>" ) => "\I8\(0 to 3)"
nmpPathCDBAToVHDL( "instName<4>" ) => "\instName\(4)"
nmpPathCDBAToVHDL( "inst_name<4>" ) => "inst_name(4)"
Converting simple instance vectors in the CDBA namespace to the Verilog namespace.
nmpPathCDBAToVerilog( "I8<0:3>" ) => "I8[0:3]"
nmpPathCDBAToVerilog( "instName<4>" ) => "instName[4]"
Additional Information
The following table lists all current nmpPath<NameSpace>To<NameSpace> functions.
|
Converts a simple instance vector in the CDBA namespace to the VHDL namespace. |
|
|
Converts a simple instance vector in the CDBA namespace to the Verilog namespace. |
Related Topics
nmpIdentTo<NameSpace>
Return to top