home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / jsage / znode3 / uploads / zslsrc36.lbr / MOUT.Z80 < prev    next >
Encoding:
Text File  |  1991-07-16  |  384 b   |  22 lines

  1. ; Library:    ZSLIB
  2. ; Version:    2.0
  3. ; Module:    MOUT
  4. ; Version:    1.0
  5. ; Author:    Carson Wilson
  6. ; Date:        January 6, 1990
  7. ;
  8. ; MOUT -- Stores A to memory at DE.
  9. ;
  10. ; Entry:  A = value to store
  11. ;      DE = address of memory area (1 byte)
  12. ; Exit:      DE = address of byte after output
  13. ; Uses:      DE
  14. ;
  15.     PUBLIC    MOUT
  16. ;
  17. MOUT:    ld    (de),a
  18.     inc    de
  19.     ret
  20. ;
  21.     end
  22.