/**
* -- Words designed to mimic gforth behaviour.
*
* Copyright (C) Guido Draheim 2001 - xxxx. All rights reserved.
*
* @see GNU LGPL
* @author Guido Draheim %derived_by: guidod %
* @version %version: bln_mpt1!1.10 %
* (%date_modified: Mon Sep 24 19:34:24 2001 %)
*
* @description
* Usually the following words are defined to mimic
* a certain gforth extension that some application
* writers need. They are only added on request, and
* they may be removed without warning requesting to
* use the functionality provided by pfe itself.
*//*@{*/
/* -------------------------------------------------------------
* This defines execution chains.
* The first application for this is building initialization chains:
* Think of many modules or program parts, each of it with some specific
* initialization code. If we hardcode the initialization routines into a
* "master-init" we will get unflexible and are not able only to load some
* specific modules...
* The chain is basicaly a linked-list. Define a Variable for the head of
* linked-list. Name it "foo8" or "foo-chain" to indicate it is a execution
* chain.
* You can add a word to the list with "' my-init foo8 chained". You can
* execute all the code with "foo8 chainperform".
*/