home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / assembler / as / src / h / put < prev    next >
Encoding:
Text File  |  1992-07-20  |  237 b   |  20 lines

  1.  
  2. /*
  3.  * put.h
  4.  * Copyright © 1992 Niklas Röjemo
  5.  */
  6.  
  7. #ifndef _put_h
  8. #define _put_h
  9.  
  10.  
  11. #ifndef _global_h
  12. #include "global.h"
  13. #endif
  14.  
  15. void putData(int size, WORD data);
  16. void putDataFloat(int size, FLOAT data);
  17. void putIns(WORD ins);
  18.  
  19. #endif
  20.