7913918505
Tools for schematic capture, netlist creation, and analog and digital simulation (log), IC mask layout, extraction, and DRC (wol), simple chip compilation (wolcomp), MOSIS fabrication request generation (mosis), netlist comparison (netcmp), data plotting (view) and postscript graphics editing (until). These tools were used exclusively for the design and test of all the integrated circuits described in Carver Mead's book "Analog VLSI and Neural Systems". Until was used as the primary tool for figure creation for the book. The directory also contains an example of an analog VLSI chip that was designed and fabricated with these tools, and an example of an Actel field-programmable gate array design that was simulated and converted to Actel format with these tools (example). These tools were originally written for HP 200 Series ("Chipmunk") computers, and were later ported to Unix and the X Window System.
13 lines
491 B
Plaintext
13 lines
491 B
Plaintext
$OpenBSD: patch-psys_src_newasmlib_c,v 1.1.1.1 2003/10/25 18:33:27 pvalchev Exp $
|
|
--- psys/src/newasmlib.c.orig 2003-03-12 15:47:35.000000000 -0700
|
|
+++ psys/src/newasmlib.c 2003-10-25 00:25:01.000000000 -0600
|
|
@@ -1815,7 +1815,7 @@ register long i, w;
|
|
Char *strdate(res, opts) /* ignore opts for now */
|
|
Char *res, *opts;
|
|
{
|
|
- time_t t = time((long *)0);
|
|
+ time_t t = time((time_t *)0);
|
|
strcpy(res, ctime(&t));
|
|
res[strlen(res)-1] = 0; /* eat the \n */
|
|
return res;
|