home *** CD-ROM | disk | FTP | other *** search
- ;************************************************************************
- ;* FILEOUT prints Filename. *
- ;* upon call, HL must point to FCB *
- ;************************************************************************
-
- .z80 ;
- entry _fileout ;
-
- _fileout: ld a,(hl) ; lfw: specified?
- or a ;
- jr z,file01 ;
- add a,'@' ;
- call stdout## ;
- ld a,':' ;
- call stdout## ;
- file01: ld b,8 ; name
- file02: inc hl ;
- ld a,(hl) ;
- call stdout## ;
- djnz file02 ;
- ld a,'.' ; delimiter
- call stdout## ;
- ld b,3 ;
- file03: inc hl ;
- ld a,(hl) ;
- call stdout## ;
- djnz file03 ;
- ret ; B=0, HL+=12, rest blieb
- end ;