Converting most Fargo II programs to PlusShell is a very easy task.  The
following differences must be considered:

* There is no support for BSS or multiple sections in PlusShell.
* Keyboard handling without libraries is slightly different.  Fargo II
  programs would use this to wait for a key and return it in d0:
    wait_for_key_loop:
     tst.w tios::kb_globals+$1c
     beq wait_for_key_loop
     move.w tios::kb_globals+$1e,d0
     clr.w tios::kb_globals+$1c
  PlusShell programs use this code:
    wait_for_key_loop:
     tst.w tios::kb_globals+$1e
     beq wait_for_key_loop
     move.w tios::kb_globals+$1e,d0
     clr.w tios::kb_globals+$1e
  Notice that the old key pressed flag is no longer used.
* The numbers of special handles have changed.  See the 92pinfo.htm in the
  docs directory.
* The format of the folder lists has changed.  Also see 92pinfo.htm.

If you encounter another difference not listed here or have a question, feel
free to e-mail me at river@gte.net
