fs/copyr: Post-SVN tidy
- Move source code from `trunk` into program root directory. - Update build files and ASM include paths.
This commit is contained in:
@@ -112,7 +112,7 @@ echo *
|
|||||||
echo Building fs
|
echo Building fs
|
||||||
echo *
|
echo *
|
||||||
fasm fs\copy2\trunk\copy2.asm %BIN%\copy2
|
fasm fs\copy2\trunk\copy2.asm %BIN%\copy2
|
||||||
fasm fs\copyr\trunk\copyr.asm %BIN%\copyr
|
fasm fs\copyr\copyr.asm %BIN%\copyr
|
||||||
fasm fs\kfar\trunk\kfar.asm %BIN%\kfar
|
fasm fs\kfar\trunk\kfar.asm %BIN%\kfar
|
||||||
rem fasm fs\mfar\trunk\mfar.asm %BIN%\mfar
|
rem fasm fs\mfar\trunk\mfar.asm %BIN%\mfar
|
||||||
fasm fs\sysxtree\trunk\sysxtree.asm %BIN%\sysxtree
|
fasm fs\sysxtree\trunk\sysxtree.asm %BIN%\sysxtree
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
if tup.getconfig("NO_FASM") ~= "" then return end
|
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")
|
tup.include(HELPERDIR .. "/use_fasm.lua")
|
||||||
add_include(tup.getvariantdir())
|
add_include(tup.getvariantdir())
|
||||||
|
|
@@ -1,3 +1,9 @@
|
|||||||
|
; SPDX-License-Identifier: NOASSERTION
|
||||||
|
;
|
||||||
|
|
||||||
|
; Text encoded with Code Page 866 - Cyrillic
|
||||||
|
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
; ;
|
; ;
|
||||||
; FILE COPY - system module for copy ;
|
; FILE COPY - system module for copy ;
|
||||||
@@ -24,7 +30,7 @@
|
|||||||
dd param_area , 0x0 ; I_Param , I_Icon
|
dd param_area , 0x0 ; I_Param , I_Icon
|
||||||
|
|
||||||
include 'lang.inc' ; Language support for locales: ru_RU (CP866), en_US.
|
include 'lang.inc' ; Language support for locales: ru_RU (CP866), en_US.
|
||||||
include '..\..\..\macros.inc' ; very useful stuff for MeOS
|
include '..\..\macros.inc' ; very useful stuff for MeOS
|
||||||
include 'ascl.inc'
|
include 'ascl.inc'
|
||||||
|
|
||||||
START: ; start of execution
|
START: ; start of execution
|
Reference in New Issue
Block a user