home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / language / nasm20 / nasm20s / ops.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-23  |  495 b   |  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.