Initial version of donated sources by Avertec, 3.4p5.
[tas-yagle.git] / distrib / sources / tbg / tbg_ExecuteCycle.c
1 /* functions for the pattern.c file */
2
3 #include "tbg.h"
4
5 void ExecuteCycle ()
6 {
7 t_port *port;
8
9 for (port = HEAD_PORT; port; port = port->NEXT)
10 if (port->VALUE)
11 fprintf (PAT_FILE, " %s", port->VALUE);
12 fprintf (PAT_FILE, "\n");
13
14 }