ボクが自分の BIF 6809 に基づいてC言語で実装した fig-FORTH 言語の方言です。 C言語ができるのに、FORTH言語のローレベルをハイレベルの観点から探りたいと思う方は関心になるかもしれません。 正確に機能する FORTH言語をお望みの場合は、他所のプロジェクトに探したほうが良さそう。 (リリースは常に送れているでしょう。<http://sourceforge.net/projects/bif-c/>のソースコードリポジトリを見て、スナップショットをダウンロードすることをおすすめします。)
この時点では、仮想ディスクはほぼ動いています。以下の用に稼働します:
./bif-c -d0 -ro TOOLS.G00 -d1 space.disk
ただし、 TOOLS.G00 のソースは 6809 の TRS-80 Color Computer に依存していますので、そのまま稼働すると segfault を起こします。(LOADは無事に出来ます。)
<https://sourceforge.net/projects/bif-c/>の code リポジトリーをご参照ください。
The virtual disks are mostly working. Try it like this:
./bif-c -d0 -ro TOOLS.G00 -d1 space.disk
But beware that the source in TOOLS.G00 depends on TRS-80 Color Computer hardware and will cause segfaults if executed as is. (But LOAD-ing the source actually finishes okay.)
See the code repository at <https://sourceforge.net/projects/bif-c/>