1
0
mirror of https://github.com/PDP-10/its.git synced 2026-04-03 21:02:59 +00:00
Files
PDP-10.its/c20/lex/readme.604
2018-05-15 07:06:17 +02:00

20 lines
524 B
Plaintext

[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.