Fix some definition/implementation name differences.
Update some of the definition argument names to match the recent implementation name changes
This commit is contained in:
parent
3fe68c4c04
commit
b7264d21d5
|
|
@ -1476,7 +1476,7 @@ class NetReplicate : public NetNode {
|
||||||
class NetUserFunc : public NetNode {
|
class NetUserFunc : public NetNode {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
NetUserFunc(NetScope*s, perm_string n, NetScope*def, NetEvWait*trigger);
|
NetUserFunc(NetScope*s, perm_string n, NetScope*def, NetEvWait*trigger__);
|
||||||
~NetUserFunc();
|
~NetUserFunc();
|
||||||
|
|
||||||
ivl_variable_type_t data_type(unsigned port) const;
|
ivl_variable_type_t data_type(unsigned port) const;
|
||||||
|
|
@ -1503,7 +1503,7 @@ class NetSysFunc : public NetNode {
|
||||||
public:
|
public:
|
||||||
NetSysFunc(NetScope*s, perm_string n,
|
NetSysFunc(NetScope*s, perm_string n,
|
||||||
const struct sfunc_return_type*def,
|
const struct sfunc_return_type*def,
|
||||||
unsigned ports, NetEvWait*trigger);
|
unsigned ports, NetEvWait*trigger__);
|
||||||
~NetSysFunc();
|
~NetSysFunc();
|
||||||
|
|
||||||
ivl_variable_type_t data_type() const;
|
ivl_variable_type_t data_type() const;
|
||||||
|
|
@ -1802,7 +1802,7 @@ class NetPartSelect : public NetNode {
|
||||||
explicit NetPartSelect(NetNet*sig,
|
explicit NetPartSelect(NetNet*sig,
|
||||||
unsigned off, unsigned wid, dir_t dir);
|
unsigned off, unsigned wid, dir_t dir);
|
||||||
explicit NetPartSelect(NetNet*sig, NetNet*sel,
|
explicit NetPartSelect(NetNet*sig, NetNet*sel,
|
||||||
unsigned wid, bool signed_flag = false);
|
unsigned wid, bool signed_flag__ = false);
|
||||||
~NetPartSelect();
|
~NetPartSelect();
|
||||||
|
|
||||||
unsigned base() const;
|
unsigned base() const;
|
||||||
|
|
|
||||||
4
pform.h
4
pform.h
|
|
@ -161,8 +161,8 @@ extern void pform_module_define_port(const struct vlltype&li,
|
||||||
extern Module::port_t* pform_module_port_reference(perm_string name,
|
extern Module::port_t* pform_module_port_reference(perm_string name,
|
||||||
const char*file,
|
const char*file,
|
||||||
unsigned lineno);
|
unsigned lineno);
|
||||||
extern void pform_endmodule(const char*, bool in_celldefine,
|
extern void pform_endmodule(const char*, bool inside_celldefine,
|
||||||
Module::UCDriveType uc_drive);
|
Module::UCDriveType uc_drive_def);
|
||||||
|
|
||||||
extern void pform_make_udp(perm_string name, list<perm_string>*parms,
|
extern void pform_make_udp(perm_string name, list<perm_string>*parms,
|
||||||
svector<PWire*>*decl, list<string>*table,
|
svector<PWire*>*decl, list<string>*table,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue