1
0
mirror of https://github.com/PDP-10/its.git synced 2026-03-22 17:08:15 +00:00
Files
2018-05-15 07:06:17 +02:00
..
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00
2018-05-15 07:06:17 +02:00

[6,4]	[.LEX]		Lexical Analyser Generator

This is an implementation of the Unix program LEX, which generates
lexical analysers from regular expression grammars.

Because the Decus compiler does not seperate I and D space, LEX
cannot be used to build very large grammars.   There are several
possibilities:

	1.	Remove the dfa/nfa print routines, which are needed
		for debugging.

	2.	Use I/O redirection to read the grammar source from
		stdin.  This will save 1/4 K-word or so.

	3.	Overlay the parser phases.

Have fun.