1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00

nes: .asm uses DASM, not ca65

This commit is contained in:
Steven Hugg 2019-08-15 12:33:43 -04:00
parent 2b461cc3b5
commit 1f3f0e7613

View File

@ -384,8 +384,9 @@ class JSNESPlatform extends Base6502Platform implements Platform {
return s;
}
getToolForFilename = (fn:string) : string => {
if (fn.endsWith(".asm")) return "ca65"; // .asm uses ca65
else return getToolForFilename_6502(fn);
//if (fn.endsWith(".asm")) return "ca65"; // .asm uses ca65
//else
return getToolForFilename_6502(fn);
}
}