36 lines
1.4 KiB
Plaintext
36 lines
1.4 KiB
Plaintext
// (setq tab-width 4)
|
|
|
|
create_item(
|
|
"mr_opamp", // name
|
|
"mr Operation Amplifier", // label
|
|
"U", // prefix
|
|
0, // attributes
|
|
NULL, // priority
|
|
NULL, // icon
|
|
|
|
standard_dialog, // dialog name
|
|
"", // dialog data
|
|
|
|
CmpModelNetlistFmt, // netlist format
|
|
"", // netlist data
|
|
|
|
NULL, // symbol name (not used since 2011)
|
|
NULL, // artwork type (not used since 2011)
|
|
NULL, // artwork data (not used since 2011)
|
|
|
|
ITEM_PRIMITIVE_EX, // extra attributes
|
|
|
|
// -----------------------------------------------------
|
|
// model
|
|
// -----------------------------------------------------
|
|
create_parm(
|
|
"Model",
|
|
"Model instance name",
|
|
0,
|
|
"StdFileFormSet",
|
|
UNITLESS_UNIT,
|
|
prm("StdForm", "va_opamp")
|
|
)
|
|
|
|
);
|