Changes
CP/M 2.2
,/* Deleting a file that doesn't exist */
First check if a file exists before deleting it:
ld c,&11 ;; search for first
ld de,fcb
call BDOS
jr z,doesnt_exist
ld c,&13 ;; delete file
ld de,fcb
call BDOS