home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / oxcc1433.zip / DOC / BTERP.TXT < prev    next >
Text File  |  1995-09-09  |  730b  |  19 lines

  1. BTERP.TXT
  2.  
  3.     `bterp' is a prototype interpreter for .byt files generated
  4.     by `oxccb'. The specification for the byte codes are in `oxbytes.h'.
  5.     Files can be located in local directories or in a .cff archive.
  6.  
  7. Usage: bterp [+dS] file [args]...
  8.    +S name == start execution at function `name'
  9.    +d == print debug output to stdout
  10.    Default execution starts at function `main' or `file'
  11.  
  12. NOTE: The current byte code format was invented by me just to have a
  13.    comprehensive C language interpreter. There are innumerable OTHER forms
  14.    of byte codes which could just as easily be generated, e.g. extended html,
  15.    extended RIP, Java etc. Just think up something and DO IT. Use oxccb.c and
  16.    bterp.c as a guide.
  17.  
  18.  
  19.