diff --git a/programs/emulator/chip8/Tupfile.lua b/programs/emulator/chip8/Tupfile.lua index 3f985bdfde..ec283430ac 100644 --- a/programs/emulator/chip8/Tupfile.lua +++ b/programs/emulator/chip8/Tupfile.lua @@ -1,6 +1,4 @@ if tup.getconfig("NO_FASM") ~= "" then return end -HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../.." or tup.getconfig("HELPERDIR") -tup.include(HELPERDIR .. "/use_fasm.lua") - -tup.rule("chip8.asm", FASM .. " %f %o " .. tup.getconfig("KPACK_CMD"), "chip8") +tup.rule("chip8.asm", "fasm %f %o " .. tup.getconfig("KPACK_CMD"), "chip8") + \ No newline at end of file