You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
618 B
21 lines
618 B
#ifndef INCLUDED_UDEVICES
|
|
#define INCLUDED_UDEVICES
|
|
|
|
struct udevices_info {
|
|
int mntymx;
|
|
BOOL shorter_delays;
|
|
};
|
|
|
|
BOOL u_process_instance(char *line);
|
|
BOOL u_process_model_line(char *line, BOOL global);
|
|
BOOL u_check_instance(char *line);
|
|
void initialize_udevice(char *subckt_line);
|
|
struct card *replacement_udevice_cards(void);
|
|
void cleanup_udevice(BOOL global);
|
|
void u_add_instance(char *str);
|
|
void u_add_logicexp_model(char *tmodel, char *xspice_gate, char *model_name);
|
|
void u_remember_pin(char *name, int type);
|
|
struct udevices_info u_get_udevices_info(void);
|
|
void u_subckt_line(char *subckt_line);
|
|
|
|
#endif
|