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.
20 lines
559 B
20 lines
559 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 u_check_instance(char *line);
|
|
void initialize_udevice(char *subckt_line);
|
|
struct card *replacement_udevice_cards(void);
|
|
void cleanup_udevice(void);
|
|
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);
|
|
|
|
#endif
|