home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / GAMES / informosk.lha / readme.osk < prev    next >
Text File  |  1993-12-21  |  1KB  |  29 lines

  1. (December 20, 1993)
  2.     Howdy!
  3.  
  4.     Here's my humble attempt at porting Graham Nelson's nifty Z-code compiler
  5. to the OS-9/680x0 (OSK for short) operating system.
  6.  
  7.     Mr. Nelson, I salute you. Your documentation is superb; it made the
  8. program a breeze to port. 8-)
  9.  
  10.     Contained in this archive is all the original stuff from the generic UNIX
  11. distribution, with one additional thing: the file "informosk.c" is a K&R-ized
  12. version of the C source for the compiler. Since I don't have Microware's
  13. relatively new Ultra-C (which is supposed to be a full ANSI compiler), I had
  14. to change all the function headers back to the old K&R syntax, get rid of some
  15. 'const' keywords, etc. As a result, you should be able to compile informosk.c
  16. with the regular Microware C compiler. If you have GNU C, it should be pretty
  17. easy to get the ANSI version ("inform.c") to work.
  18.  
  19.     To compile informosk.c, use the following commandline (the -K0WCL flags
  20. force longword code references, otherwise r68 complains about out of range
  21. branches):
  22.  
  23. $ cc -K0WCL -E=1 -M=16k informosk.c -F=inform
  24.  
  25.     The compiler generates the dejavu.z3 demo properly, as far as I know, so it
  26. should be good. I compiled it on an MM/1 computer with OS9 v2.4.
  27.  
  28.     -Russ Magee
  29.