C64 development in Xcode?

Using the Vice C64 emulator, I have a tool called "petcat" that converts BASIC (ascii text) to a .prg file to work in Vice. Predictably, I was able to develop in TextMate and configure a “package” for pressing a key to force the shell to call my favorite cat, passing variables like $ FILENAME, and this creates the .prg file in order.

Is it possible to do this in Xcode?

+3
source share
1 answer

sure, use the project "external assembly". Then edit the MakeFile to do what you want.

+1
source

All Articles