From a2f8c2482dd1bf746f6bb75e973a6de26aadab7b Mon Sep 17 00:00:00 2001 From: Morten Delenk Date: Sat, 2 Jul 2016 17:16:47 +0200 Subject: [PATCH] Changed toolchain names --- mumei.y | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mumei.y b/mumei.y index 4246595..86ca40d 100644 --- a/mumei.y +++ b/mumei.y @@ -95,7 +95,7 @@ int main(int argc, char** argv) { int pid; mkfifo("tmp.a", 0660); if(!(pid=fork())) { - system("as -o tmp.o crt0.asm tmp.a libmtg.asm"); + system("svmas -o tmp.o crt0.asm tmp.a libmtg.asm"); return 0; } out=ofstream("tmp.a",ios::out); @@ -114,7 +114,7 @@ int main(int argc, char** argv) { } out.close(); wait(NULL); - system(("explink -o "s+argv[2]+" -c tmp.o -C 0").c_str()); + system(("svmln -o "s+argv[2]+" -c tmp.o -C 0").c_str()); unlink("tmp.o"); }