Hi, I’m trying to get ACME to assemble my 6510 source code and then call WinVice (Emulation) after, to execute the .prg file. I’m stuck and I can’t get ACME to compile. The directory structure I have set up is something like this:
c:\6510\ACME (inside is ACME.exe assembler)
c:\6510\Source (inside is my .asm file and workspace saved)
c:\6510\Sublime
c:\6510\WinVice
To create a build system I then went to:
Tools > Build System > New Build System
I called it “ACME.sublime-build”, this is it’s content:
{
“shell_cmd”: [“c:\6510\acme\acme.exe”, “%f”],
“shell_cmd”: [“c:\6510\WinVICE\x64.exe”, “%e.o”]
}
I have selected my build (Tools > Build System > Acme"), press CTRL+B and get the message “No Build System” in the status line.
Can anyone please advise how to create a build system for ACME? Thank you in advance!