I've got a problem with the COPY command in the emulator.
ROM V920240
Unit 8 -> MEGA65.D81
Unit 9 -> BASIC65.D81
I wanted to copy one file from unit 9 to unit 8.
But the Mega65 crashed on every try.
Used Command:
COPY "DEMOSPRITES1",U9 TO "DEMOSPRITES1",U8
also
COPY "DEMOSPRITES1",D0,U9 TO "DEMOSPRITES1"D0,U8
didn't work.
??
Did I do something wrong?
COPY seems to work on unit 8 (U8).
COPY "XY12",U8 TO "AB12",U8
works fine, renamed file is found on unit 8 afterwards
COPY "XY12",U9 TO "AB12",U8
doesn't work, Mega65 crashes
It seems that COPY doesn't work with unit 9 (U9).
LOAD or DIR work fine with unit 9.
So I can load files, but not copy them directly from unit 9 to unit 8?
??
I know, I can load a Basic program from unit 9 into memory and then save it to unit 8.
But that does not solve the problem with COPY command.