home *** CD-ROM | disk | FTP | other *** search
/ Crawly Crypt Collection 1 / crawlyvol1.bin / program / compiler / nasm20b / nasm_src / imm.c < prev    next >
C/C++ Source or Header  |  1993-01-19  |  1KB  |  33 lines

  1. /* ---------------------------------------------------------------------- */
  2. /*                   Copyright (C) 1991 by Natürlich!                     */
  3. /*                      This file is copyrighted!                         */
  4. /*                Refer to the documentation for details.                 */
  5. /* ---------------------------------------------------------------------- */
  6. /*    This Source is ...                                      */
  7. /*    this Source is ...                                      */
  8. /*    this Source is Technotronic                             */
  9. /* ---------------------------------------------------------- */
  10. #include "defines.h"
  11. #include "debug.h"
  12. #include "structs.h"
  13. #include "imm.h"
  14. #include NMALLOC_H
  15.  
  16. imm huge *hip = 0,
  17.     huge *cip = 0;
  18.  
  19.  
  20. void  cure_patch( where, value)
  21. imm huge *where;
  22. word     value;
  23. {
  24.    ENTER("cure_patch");
  25.    if( ! where)
  26.       nierror("[cure_patch] That shouldn't happen");
  27.    where->val = value;
  28.    LEAVE();
  29.    return;
  30. }
  31.  
  32. make_mallocer( imm, IMMMAX, imm_alloc)    /* that's all */
  33.