home *** CD-ROM | disk | FTP | other *** search
- ;************************************************************************
- ;* compare two strings *
- ;* returns Z-flag if strings *
- ;* are the same, else NZ *
- ;************************************************************************
-
- .z80 ;
- entry _cpmem ;
-
- _cpmem: ld a,(de) ;
- cp (hl) ;
- ret nz ;
- inc hl ;
- inc de ;
- djnz _cpmem ;
- ret ;
-
- end ;