home *** CD-ROM | disk | FTP | other *** search
- ; Library: ZSLIB
- ; Version: 2.0
- ; Module: MOUT
- ; Version: 1.0
- ; Author: Carson Wilson
- ; Date: January 6, 1990
- ;
- ; MOUT -- Stores A to memory at DE.
- ;
- ; Entry: A = value to store
- ; DE = address of memory area (1 byte)
- ; Exit: DE = address of byte after output
- ; Uses: DE
- ;
- PUBLIC MOUT
- ;
- MOUT: ld (de),a
- inc de
- ret
- ;
- end