12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- Bison ver 1.16 for Commodore Amiga.
- This patch for Amiga, was made by Anders Hybertz
- ------------------------------------------------------------------------------
- This version of Bison, is for Commodore Amiga. I have changed as few
- things as possible. You can find the changes in the source code, if you
- searches the files for <#ifdef AMIGA>. It's compiled under SAS-C 5.1.
- ------------------------------------------------------------------------------
- How to make Bison run on you system:
- - If you have a 68030 you can just copy
- bison.simple to <s:>
- bison.hairy to <s:>
- and the binary Bison.030, where you want it.
- - If you have a 68000 you can just copy
- bison.simple to <s:>
- bison.hairy to <s:>
- and the binary Bison.000, where you want it.
- - If you want to have a 68020 version, you must compile Bison again.
- In the source directory you will find the Makefile, who
- does the job for you. The Makefile was generated by MkMkake,
- a tool (made by me), that generates Makefiles automatically.
- What you have to change is the <-m3> option. If you write
- <-m2>, you get code for 68020.
- - As a test, try Bison on the file <test:calc.y>. This file is a
- simple calculator. To do this write from CLI:
- > Bison -d calc.y
- Bison then generates the file <yy.tab.c>, if you can compile
- this file with you c-compiler, and run it, you is home.
- - The Manual for Bison is in the <man> directory. Where else ?
- Also included, the TeX and dvi files.
- - Bison will only start from CLI.
- ------------------------------------------------------------------------------
- READ THIS:
- - Before you start generate a lot of code, please read the
- COPYING file.
- - This distribution of Bison is not written by me, I only
- changed it to run on Commodore Amiga.
- ------------------------------------------------------------------------------
- WHERE TO FIND ME:
- - If you have any problems whit Bison, please let me now.
- I can be reached on:
- InterNet: jeckyl@imada.ou.dk
- ------------------------------------------------------------------------------
|