home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / nasm20b / nasm_src / ops.h < prev    next >
Text File  |  1993-01-19  |  495b  |  14 lines

  1. /* ---------------------------------------------------------------------- */
  2. /*                   Copyright (C) 1991 by Natürlich!                     */
  3. /*                      This file is copyrighted!                         */
  4. /*                Refer to the documentation for details.                 */
  5. /* ---------------------------------------------------------------------- */
  6. typedef struct
  7. {
  8.    char huge   *mnem;
  9.    byte huge   *instr;
  10. } _ops;
  11.  
  12. # define get_mnemo(i) ( ops[i].mnem )
  13.  
  14.