Fix missing prototype for ReadVerilogFile function
Unbreak OpenBSD port for mips64 arch
This commit is contained in:
parent
0df6c83df5
commit
8a7bb7f2ca
|
|
@ -65,6 +65,15 @@ extern void AssignCircuits(char *name1, int file1, char *name2, int file2);
|
||||||
/* flatten.c */
|
/* flatten.c */
|
||||||
extern int PrematchLists(char *, int, char *, int);
|
extern int PrematchLists(char *, int, char *, int);
|
||||||
|
|
||||||
|
/* verilog.c */
|
||||||
|
struct cellstack {
|
||||||
|
char *cellname;
|
||||||
|
struct cellstack *next;
|
||||||
|
};
|
||||||
|
|
||||||
|
void ReadVerilogFile(char *fname, int filenum, struct cellstack **CellStackPtr,
|
||||||
|
int blackbox);
|
||||||
|
|
||||||
/* Define (enumerate) various device classes, largely based on SPICE */
|
/* Define (enumerate) various device classes, largely based on SPICE */
|
||||||
/* model types, mixed with some ext/sim types. */
|
/* model types, mixed with some ext/sim types. */
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -473,15 +473,6 @@ void CleanupSubcell() {
|
||||||
SetClass(CLASS_MODULE);
|
SetClass(CLASS_MODULE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*------------------------------------------------------*/
|
|
||||||
/* Structure for stacking nested subcircuit definitions */
|
|
||||||
/*------------------------------------------------------*/
|
|
||||||
|
|
||||||
struct cellstack {
|
|
||||||
char *cellname;
|
|
||||||
struct cellstack *next;
|
|
||||||
};
|
|
||||||
|
|
||||||
/*------------------------------------------------------*/
|
/*------------------------------------------------------*/
|
||||||
/* Push a subcircuit name onto the stack */
|
/* Push a subcircuit name onto the stack */
|
||||||
/*------------------------------------------------------*/
|
/*------------------------------------------------------*/
|
||||||
|
|
|
||||||
|
|
@ -632,11 +632,6 @@ void CleanupModule() {
|
||||||
/* Structure for stacking nested module definitions */
|
/* Structure for stacking nested module definitions */
|
||||||
/*------------------------------------------------------*/
|
/*------------------------------------------------------*/
|
||||||
|
|
||||||
struct cellstack {
|
|
||||||
char *cellname;
|
|
||||||
struct cellstack *next;
|
|
||||||
};
|
|
||||||
|
|
||||||
/* Forward declarations */
|
/* Forward declarations */
|
||||||
extern void IncludeVerilog(char *, int, struct cellstack **, int);
|
extern void IncludeVerilog(char *, int, struct cellstack **, int);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue