home *** CD-ROM | disk | FTP | other *** search
/ FreeWare Collection 2 / FreeSoftwareCollection2pd199x-jp.img / ms_dos / ish / ish200s / ish200s.lzh / V30.H < prev    next >
Text File  |  1990-03-27  |  954b  |  58 lines

  1. ;
  2. ;        ish file converter for MS-DOS  Ver 2.00 (90/3/27)
  3. ;
  4. ;
  5. ;        Copyright (c) 1986, 1987, 1989, 1990  by  M. ishizuka
  6. ;        All rights reserved.
  7. ;
  8.  
  9.  
  10.  
  11. ;-----------------------------------------------;
  12. ;                        ;
  13. ;    ext    dl, xx                ;
  14. ;                        ;
  15. ;-----------------------------------------------;
  16.  
  17. ext        macro    para1, para2    ; ext dl, <num> for V30
  18.         ifidni    <para1>, <dl>
  19.            if para2 le 15d
  20.             db    0fh, 3bh, 0c2h
  21.             db    para2
  22.             exitm
  23.            endif
  24.         endif
  25.         if2
  26.            %out *** error in ext <macro> ***
  27.         endif
  28.         nop
  29.         nop
  30.         nop
  31.         nop
  32.         endm
  33.  
  34.  
  35.  
  36. ;-----------------------------------------------;
  37. ;                        ;
  38. ;    ins    dl, xx                ;
  39. ;                        ;
  40. ;-----------------------------------------------;
  41.  
  42. ins        macro    para1, para2    ; ins dl, <num> for V30
  43.         ifidni    <para1>, <dl>
  44.            if para2 le 15d
  45.             db    0fh, 39h, 0c2h
  46.             db    para2
  47.             exitm
  48.            endif
  49.         endif
  50.         if2
  51.            %out *** error in ins <macro> ***
  52.         endif
  53.         nop
  54.         nop
  55.         nop
  56.         nop
  57.         endm
  58.