BUGS:

----------------------------------------------------------------------------

error: 

In htcobgen.c yyparse(), seams to be writing a lot(230) of blanks lines
for no apparent reason.

Beginning compile process ...
.... <-
Lines compiled:  231

cause: unknown.

location: unknown.

	printf("Beginning compile process ...\n");
->	yyparse();
	printf("Lines compiled: %4d\n",lineno);


----------------------------------------------------------------------------

error: 

 01     TABEL-C.
    05    TAB-C1 OCCURS 10 TIMES INDEXED BY C1.
       10    TAB-C2 OCCURS 20 TIMES INDEXED BY C2.
         15    TAB-C3 OCCURS 300 TIMES INDEXED BY C3.
           25  TAB-C4                  PIC 9(05).
           25  TAB-C5                  PIC 9(05).

* SET C1 TO 1.
 MOVE 1 TO C1.

cause:
Implicit variables defined by INDEXED BY clause must be set by the
'SET var [ TO | UP BY | DOWN BY ] integer' clause. It should not be
set using MOVE, ADD, SUB verbs, thus should be flagged as an error.

location: unknown.

----------------------------------------------------------------------------

error:

 01	W01-COMPUTE	PIC 9(8).
	05 W05-HOUR	PIC 9(2).
	05 W05-MIN	PIC 9(2).
	05 W05-SEC	PIC 9(2).

cause:
Caused by using level 01 variable with PIC clause. Should be syntax error.

location: unknown.

