home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / JSAGE / ZSUS / PROGPACK / ZSLIB21.LBR / ZSMOUT.ZZ0 / ZSMOUT.Z80
Text File  |  1990-02-01  |  512b  |  28 lines

  1.  
  2. ; Library:    ZSLIB
  3. ; Version:    2.0
  4. ; Module:    ZSMOUT
  5. ; Version:    1.0
  6. ; Author:    Carson Wilson
  7. ; Date:        January 6, 1990
  8. ; Purpose:    Store A to memory at DE.
  9.  
  10.     PUBLIC    MOUT
  11.  
  12. ;
  13. ; MOUT - Store A to memory at DE.
  14. ;
  15. ;    Entry:    <A>  - contains value to store.
  16. ;        <DE> - points to memory area (1 byte)
  17. ;    Exit:    <DE> - points to byte after output.
  18. ;    Uses:    <DE>.
  19.  
  20. MOUT:
  21.     ld    (de),a
  22.     inc    de
  23.     ret
  24.  
  25.     end
  26.  
  27. ; End ZSMOUT.Z80
  28.