develop/tinypad: Post-SVN tidy
- Move source code from `trunk` into program root directory. - Update build files and ASM include paths.
This commit is contained in:
@@ -442,7 +442,7 @@ tup.append_table(img_files, {
|
|||||||
{"SKINCFG", VAR_PROGS .. "/system/skincfg/trunk/skincfg"},
|
{"SKINCFG", VAR_PROGS .. "/system/skincfg/trunk/skincfg"},
|
||||||
{"TERMINAL", VAR_PROGS .. "/system/terminal/terminal"},
|
{"TERMINAL", VAR_PROGS .. "/system/terminal/terminal"},
|
||||||
{"TEST", VAR_PROGS .. "/testing/protection/trunk/test"},
|
{"TEST", VAR_PROGS .. "/testing/protection/trunk/test"},
|
||||||
{"TINYPAD", VAR_PROGS .. "/develop/tinypad/trunk/tinypad"},
|
{"TINYPAD", VAR_PROGS .. "/develop/tinypad/tinypad"},
|
||||||
{"TINFO", VAR_PROGS .. "/system/tinfo/tinfo"},
|
{"TINFO", VAR_PROGS .. "/system/tinfo/tinfo"},
|
||||||
{"TIMER", VAR_PROGS .. "/other/Timer/Timer"},
|
{"TIMER", VAR_PROGS .. "/other/Timer/Timer"},
|
||||||
{"UNZ", VAR_PROGS .. "/fs/unz/unz"},
|
{"UNZ", VAR_PROGS .. "/fs/unz/unz"},
|
||||||
|
@@ -95,7 +95,7 @@ fasm develop\keyascii\keyascii.asm %BIN%\develop\keyascii
|
|||||||
fasm develop\mtdbg\mtdbg.asm %BIN%\develop\mtdbg
|
fasm develop\mtdbg\mtdbg.asm %BIN%\develop\mtdbg
|
||||||
rem fasm develop\param\trunk\param.asm param
|
rem fasm develop\param\trunk\param.asm param
|
||||||
fasm develop\scancode\scancode.asm %BIN%\develop\scancode
|
fasm develop\scancode\scancode.asm %BIN%\develop\scancode
|
||||||
fasm develop\tinypad\trunk\tinypad.asm %BIN%\tinypad
|
fasm develop\tinypad\tinypad.asm %BIN%\tinypad
|
||||||
fasm develop\cObj\cObj.asm %BIN%\develop\cObj
|
fasm develop\cObj\cObj.asm %BIN%\develop\cObj
|
||||||
|
|
||||||
echo *
|
echo *
|
||||||
@@ -236,7 +236,7 @@ fasm media\scrshoot\scrshoot.asm %BIN%\nightbuild\scrshoot
|
|||||||
fasm media\animage\animage.asm %BIN%\nightbuild\animage
|
fasm media\animage\animage.asm %BIN%\nightbuild\animage
|
||||||
fasm media\midamp\trunk\midamp.asm %BIN%\nightbuild\midamp
|
fasm media\midamp\trunk\midamp.asm %BIN%\nightbuild\midamp
|
||||||
fasm develop\heed\heed.asm %BIN%\nightbuild\heed
|
fasm develop\heed\heed.asm %BIN%\nightbuild\heed
|
||||||
fasm develop\tinypad\trunk\tinypad.asm %BIN%\nightbuild\tinypad
|
fasm develop\tinypad\tinypad.asm %BIN%\nightbuild\tinypad
|
||||||
fasm system\skincfg\trunk\skincfg.asm %BIN%\nightbuild\skincfg
|
fasm system\skincfg\trunk\skincfg.asm %BIN%\nightbuild\skincfg
|
||||||
fasm system\hdd_info\trunk\hdd_info.asm %BIN%\nightbuild\hdd_info
|
fasm system\hdd_info\trunk\hdd_info.asm %BIN%\nightbuild\hdd_info
|
||||||
fasm system\mgb\trunk\mgb.asm %BIN%\nightbuild\mgb
|
fasm system\mgb\trunk\mgb.asm %BIN%\nightbuild\mgb
|
||||||
|
@@ -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,6 @@
|
|||||||
|
; SPDX-License-Identifier: NOASSERTION
|
||||||
|
;
|
||||||
|
|
||||||
;-----------------------------------------------------------------------------
|
;-----------------------------------------------------------------------------
|
||||||
; project name: TINYPAD
|
; project name: TINYPAD
|
||||||
; compiler: flat assembler 1.67.21
|
; compiler: flat assembler 1.67.21
|
||||||
@@ -24,10 +27,10 @@
|
|||||||
|
|
||||||
include 'lang.inc'
|
include 'lang.inc'
|
||||||
|
|
||||||
include '../../../config.inc' ;for nightbuild
|
include '../../config.inc' ;for nightbuild
|
||||||
include '../../../macros.inc' ; useful stuff
|
include '../../macros.inc' ; useful stuff
|
||||||
include '../../../struct.inc'
|
include '../../struct.inc'
|
||||||
include '../../../proc32.inc'
|
include '../../proc32.inc'
|
||||||
|
|
||||||
include 'external/libio.inc'
|
include 'external/libio.inc'
|
||||||
|
|
||||||
@@ -44,7 +47,7 @@ FALSE = 0
|
|||||||
|
|
||||||
;define __DEBUG__ 1
|
;define __DEBUG__ 1
|
||||||
;define __DEBUG_LEVEL__ 1
|
;define __DEBUG_LEVEL__ 1
|
||||||
;include '../../../debug-fdo.inc'
|
;include '../../debug-fdo.inc'
|
||||||
|
|
||||||
; compiled-in options
|
; compiled-in options
|
||||||
|
|
||||||
@@ -611,7 +614,7 @@ include 'tp-editor.asm'
|
|||||||
include 'tp-recode.asm'
|
include 'tp-recode.asm'
|
||||||
include 'tp-clipboard.asm'
|
include 'tp-clipboard.asm'
|
||||||
|
|
||||||
include '../../../dll.inc'
|
include '../../dll.inc'
|
||||||
|
|
||||||
;-----------------------------------------------------------------------------
|
;-----------------------------------------------------------------------------
|
||||||
__section @DATA ;:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
|
__section @DATA ;:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
|
Reference in New Issue
Block a user