0

I would like to read/write T64 and D64 from a Java program. Are there any libraries available to do that?

EDIT

I have looked at several C64 emulators that emulate the 1541, but the problem is they don't really offer a public API, but rather have the T64/D64 reading/writing code mixed up with other stuff.

Peter Kofler
  • 9,252
  • 8
  • 51
  • 79
mP.
  • 18,002
  • 10
  • 71
  • 105

1 Answers1

2

Besides manually parsing any suggestions ?

There are a couple of Java-based C64 emulator projects. Try reusing the code that they use to read the files.

Stephen C
  • 698,415
  • 94
  • 811
  • 1,216
  • I did, but there is no public API, most have the parsing code embedded within other emulation stuff. – mP. May 14 '12 at 00:51
  • @mP - I'm suggesting that you **extract** the parsing code. The chances of a simpler solution seem pretty small at this point. – Stephen C May 14 '12 at 01:41