; ; Copy file name from fcb hl^ to fcb de^, ; only in wild card locations of de^. .fcwild:: push b push d push h mvi b,11 fcw1: inx h inx d ldax d cpi '?' jnz fcw2 mov a,m stax d fcw2: dcr b jnz fcw1; more pop h pop d pop b ret