home *** CD-ROM | disk | FTP | other *** search
- ;************************************************************************
- ;* exchange two strings *
- ;* addresses in HL, DE *
- ;* length in B (0=256) *
- ;************************************************************************
-
- .z80 ;
- entry _exmem ;
-
- _exmem: ld a,(de) ;
- ld c,(hl) ;
- ld (hl),a ;
- ld a,c ;
- ld (de),a ;
- inc hl ;
- inc de ;
- djnz _exmem ;
- ret ;
-
- end ;