; ; copy file name from hl^ to de^ fcbs (name/ext only) ; removing any attribute bits. ; a,f .fncpy:: push b push d push h mvi b,11; chars total fncpy1: inx d; advance to fn/ft fields inx h; or just advance after 1st mov a,m ani 07fh stax d dcr b jnz fncpy1 pop h pop d pop b ret