/*
 * mysim.c
 * Template file, with sample circuit
 * [eichin:19880511.0104EST]
 */


#include <stdio.h>

#include <msimdecl.h>
#include <msimfunc.h>

main(argc, argv)
     int argc;
     char **argv;
{
  int dummy = init_run();
  Wirelist master = getblock();
  FileArgs(master,argc,argv);
  /* Simulation BEGINS here, type your work BELOW this line */
  /* Simulation ENDS here, only type your work ABOVE this line */
  run_all(master);
}

