home *** CD-ROM | disk | FTP | other *** search
- ;************************************************************************
- ;* print string pointet to by HL *
- ;* until ASCII 00 occurs *
- ;************************************************************************
-
- .z80 ;
- entry _prmes ; print message
-
- _prmes: ld a,(hl) ; Text ab hl bis 00 ausgeben
- or a ; Schlu~?
- ret z ;
- call stdout## ; gib Zeichen aus
- inc hl ;
- jr _prmes ; n{chstes Zeichen
-
- end ;