Hello
@garnet
Wow! You wrote a compiler on your own? Using assembly language? w(°o°)w
That's impressive!
Thank you
BUT the language was (and is) considered to be basic. At that time Charles Moore's stack-oriented
FORTH had attracted a good deal of interest. Two fellows in the USA published a design for a "knock-off" of FORTH called CONVERS. Many similarities to FORTH, but also differences in the internal construction. CONVERS ran faster than FORTH and that was important when the CPU clock ran at 2MHz. (Yes, two MHz. Technology was different in 1980.)
Here is a link to the original publication put out by Tilden and Denton. Their original coding was for a PDP-11.
Link:
https://duckduckgo.com/?q=Convers+progr ... =h_&ia=web
The only restriction placed on their work was that it continue to be called CONVERS, and credit given.
I took the code for CONVERS, (see above), modified it somewhat, linked it to an operating system (PTDOS by Processor Technology) and assembled it for the 8085 uP. It was used in industrial control systems for a decade or two. At that time (1979/80) programmable logic controllers were slow and expensive.
While CONVERS was/is supposedly simple, I was surprised by the bug-free nature of programs written in CONVERS. The fellows who worked for me (and writing in CONVERS) delivered bug-free programs. Their programs ran reliably for years. Never missed a beat. A major source of trouble was failure to replace the back-up battery in the solid state disk system. Then, when the battery went flat, production stopped. (Bad, bad, bad (and poor maintenance practice)) We tried to figure why programs written in CONVERS presented fewer bugs than other mid-level languages, like C or Pascal (and now - AWK). Never got a satisfying answer.
Later, I added the idea of pre-emptive task interruption and priority-driven task switching. I re-wrote the code for the (very elegant) 68HC11 uP. I called this 'The Schultz CONVERS Engine' because I discussed the design with Lyndon Schultz. He was an excellent 'sharpening stone' to keep my ideas well-ordered. This version of CONVERS allocated the resources of the uP to 7 tasks. Each task was assigned a priority and (on arrival of an interrupt - hardware) the CPU would switch (or not switch) to the new task, according to a priority interrupt table. The programmer allocated the priority. In all, the task stack was seven levels deep, allowing for 7 priorities or levels of interruption. Each task ran in a separate environment; the main shared resources were the uP hardware (timers, IO and so on). If anyone "out there" wants to run 68HC11 machine control I'll give them the source code. (Un-likely, but who knows and IF 'who' knows, THEN why not ask him?)
Writing the code for the 68HC11 turned out to be more difficult than for the 8085. The debugging software available for the 8085 was comprehensive and well written. Not so much for the 68HC11. Also, writing real-time, interrupt-drive, task-switching software is quite demanding. But all that's a long time ago and (I suspect) my brain was more capable then than now.
Turning to the topic of awk, braces and language syntax (awk syntax) your pointer to the (213 page) manual has been quite helpful. Also, Yale (and others) publish very concise (and accurate) summaries of the language and I focused on using just
one of these. A concise statement of syntax is a good place to start when using a language/command. Awk is really starting to work for me! Thanks for your help.
All the best fr. Australia
cobaka