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
229 B
20 lines
229 B
#ifndef ngspice_COMPATMODE_H
|
|
#define ngspice_COMPATMODE_H
|
|
|
|
#include "ngspice/config.h"
|
|
|
|
struct compat
|
|
{
|
|
bool hs;
|
|
bool s3;
|
|
bool all;
|
|
bool ps;
|
|
bool lt;
|
|
bool ki;
|
|
bool a;
|
|
bool spe;
|
|
};
|
|
|
|
extern struct compat newcompat;
|
|
|
|
#endif
|