diff --git a/programs/build_all.bat b/programs/build_all.bat index a0aed1637..2c42c4619 100644 --- a/programs/build_all.bat +++ b/programs/build_all.bat @@ -91,7 +91,7 @@ fasm develop\fasm\trunk\fasm.asm %BIN%\develop\fasm fasm develop\h2d2b\h2d2b.asm %BIN%\develop\h2d2b fasm develop\heed\heed.asm %BIN%\demos\heed rem fasm develop\hexview\trunk\hexview.asm hexview -fasm develop\keyascii\trunk\keyascii.asm %BIN%\develop\keyascii +fasm develop\keyascii\keyascii.asm %BIN%\develop\keyascii fasm develop\mtdbg\mtdbg.asm %BIN%\develop\mtdbg rem fasm develop\param\trunk\param.asm param fasm develop\scancode\trunk\scancode.asm %BIN%\develop\scancode diff --git a/programs/develop/keyascii/trunk/Tupfile.lua b/programs/develop/keyascii/Tupfile.lua similarity index 79% rename from programs/develop/keyascii/trunk/Tupfile.lua rename to programs/develop/keyascii/Tupfile.lua index 8cb77fefd..fc9b00b04 100644 --- a/programs/develop/keyascii/trunk/Tupfile.lua +++ b/programs/develop/keyascii/Tupfile.lua @@ -1,5 +1,5 @@ if tup.getconfig("NO_FASM") ~= "" then return end -HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../../.." or tup.getconfig("HELPERDIR") +HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../.." or tup.getconfig("HELPERDIR") tup.include(HELPERDIR .. "/use_fasm.lua") add_include(tup.getvariantdir()) diff --git a/programs/develop/keyascii/trunk/build_en.bat b/programs/develop/keyascii/build_en.bat similarity index 100% rename from programs/develop/keyascii/trunk/build_en.bat rename to programs/develop/keyascii/build_en.bat diff --git a/programs/develop/keyascii/trunk/build_ru.bat b/programs/develop/keyascii/build_ru.bat similarity index 100% rename from programs/develop/keyascii/trunk/build_ru.bat rename to programs/develop/keyascii/build_ru.bat diff --git a/programs/develop/keyascii/trunk/keyascii.asm b/programs/develop/keyascii/keyascii.asm similarity index 97% rename from programs/develop/keyascii/trunk/keyascii.asm rename to programs/develop/keyascii/keyascii.asm index 4c5fec379..19bde79d2 100644 --- a/programs/develop/keyascii/trunk/keyascii.asm +++ b/programs/develop/keyascii/keyascii.asm @@ -1,3 +1,6 @@ +; SPDX-License-Identifier: NOASSERTION +; + ; Author: M. Lisovin ; Compile with FASM for Menuet ; @@ -15,7 +18,7 @@ use32 dd 0x0 , 0x0 ; I_Param , I_Icon include 'lang.inc' -include '..\..\..\macros.inc' +include '..\..\macros.inc' START: ; start of execution red: @@ -107,5 +110,3 @@ draw_window: I_END: keyid: rb 1 scan_keyid: rb 1 - -