/*
 * usrt.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 */

  MAKEWIRE(A);
  MAKEWIRE(B);
  MAKEWIRE(C);
  MAKEWIRE(D);

  AND(C, A, B);
  OR(D, A, B);
  
  OUTPUT(A);
  OUTPUT(C);
  OUTPUT(D);
  
  /* Simulation ENDS here, only type your work ABOVE this line */
  run_all(master);
}

