diff --git a/src/voc07R/ORB.Mod b/src/voc07R/ORB.Mod index 8c187603..e155d1bc 100644 --- a/src/voc07R/ORB.Mod +++ b/src/voc07R/ORB.Mod @@ -1,5 +1,5 @@ MODULE ORB; (*NW 7.10.2013 in Oberon-07*) - IMPORT Files := OakFiles, ORS, S := SYSTEM; + IMPORT Files, ORS, S := SYSTEM; TYPE BYTE = S.BYTE; (*Definition of data types Object and Type, which together form the data structure called "symbol table". Contains procedures for creation of Objects, and for search: diff --git a/src/voc07R/ORG.Mod b/src/voc07R/ORG.Mod index ce08c2fd..eed166b4 100644 --- a/src/voc07R/ORG.Mod +++ b/src/voc07R/ORG.Mod @@ -1,5 +1,5 @@ MODULE ORG; (* NW 10.10.2013 code generator in Oberon-07 for RISC*) - IMPORT SYSTEM, Files := OakFiles, ORS, ORB; + IMPORT SYSTEM, Files, ORS, ORB; (*Code generator for Oberon compiler for RISC processor. Procedural interface to Parser OSAP; result in array "code". Procedure Close writes code-files*) diff --git a/src/voc07R/ORP.Mod b/src/voc07R/ORP.Mod index b41b3100..16010fd6 100644 --- a/src/voc07R/ORP.Mod +++ b/src/voc07R/ORP.Mod @@ -1,5 +1,5 @@ MODULE ORP; (*N. Wirth 1.7.97 / 5.11.2013 Oberon compiler for RISC in Oberon-07*) - IMPORT Args, Out := Console, Texts := CmdlnTexts, (*Oberon,*) ORS, ORB, ORG; + IMPORT Args, Out := Console, Texts, (*Oberon,*) ORS, ORB, ORG; (*Author: Niklaus Wirth, 2011. Parser of Oberon-RISC compiler. Uses Scanner ORS to obtain symbols (tokens), ORB for definition of data structures and for handling import and export, and diff --git a/src/voc07R/ORS.Mod b/src/voc07R/ORS.Mod index 8f7295f9..fddb871f 100644 --- a/src/voc07R/ORS.Mod +++ b/src/voc07R/ORS.Mod @@ -1,5 +1,5 @@ MODULE ORS; (* NW 19.9.93 / 10.10.2013 Scanner in Oberon-07*) - IMPORT SYSTEM, Texts := CmdlnTexts, Console, S := SYSTEM; + IMPORT SYSTEM, Texts, Console, S := SYSTEM; (* Oberon Scanner does lexical analysis. Input is Oberon-Text, output is sequence of symbols, i.e identifiers, numbers, strings, and special symbols.