home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / prog / arexx / alib.lha / alhsup.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1989-08-21  |  197 b   |  10 lines

  1. /* AmigaLibHost Support Subroutines */
  2.  
  3. PEEK:
  4. arg location,size
  5. return c2d( import( d2c(location,4),size ),size )
  6.  
  7. POKE:
  8. arg location,value,size
  9. call export( d2c(location,4),d2c(value,size),size )
  10.