home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / make / icmake-6.000 / icmake-6 / icmake / un / funpushi.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-08  |  176 b   |  12 lines

  1. #include "icmun.h"
  2.  
  3. void fun_push_imm ()
  4. {
  5.     INT16
  6.         val;
  7.  
  8.     val = getint16 (infile);
  9.     dumpint ( (UNS16) val);
  10.     printf ("push int %s\n", hexstring (val, 4));
  11. }
  12.