system/docky: Post-SVN clean up
- Move source code from `trunk` into program root directory. - Update build files and ASM include paths. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.
This commit is contained in:
@@ -397,7 +397,7 @@ tup.append_table(iso_extra_files, {
|
|||||||
if tup.getconfig('NO_FASM') ~= 'full' then
|
if tup.getconfig('NO_FASM') ~= 'full' then
|
||||||
tup.append_table(img_files, {
|
tup.append_table(img_files, {
|
||||||
{"KERNEL.MNT", VAR_PROGS .. "/../kernel/trunk/kernel.mnt"},
|
{"KERNEL.MNT", VAR_PROGS .. "/../kernel/trunk/kernel.mnt"},
|
||||||
{"@DOCKY", VAR_PROGS .. "/system/docky/trunk/docky"},
|
{"@DOCKY", VAR_PROGS .. "/system/docky/docky"},
|
||||||
{"@HA", VAR_PROGS .. "/other/ha/HA"},
|
{"@HA", VAR_PROGS .. "/other/ha/HA"},
|
||||||
{"@ICON", VAR_PROGS .. "/system/icon_new/icon"},
|
{"@ICON", VAR_PROGS .. "/system/icon_new/icon"},
|
||||||
{"@MENU", VAR_PROGS .. "/system/menu/trunk/menu"},
|
{"@MENU", VAR_PROGS .. "/system/menu/trunk/menu"},
|
||||||
|
@@ -1,15 +1,19 @@
|
|||||||
|
; SPDX-License-Identifier: NOASSERTION
|
||||||
|
;
|
||||||
|
|
||||||
|
|
||||||
use32
|
use32
|
||||||
org 0x0
|
org 0x0
|
||||||
;-------------------------------------------------------------------------------
|
;-------------------------------------------------------------------------------
|
||||||
db "MENUET01"
|
db "MENUET01"
|
||||||
dd 1, main, __dataend, __memend, __stackend, 0, sys_path
|
dd 1, main, __dataend, __memend, __stackend, 0, sys_path
|
||||||
;-------------------------------------------------------------------------------
|
;-------------------------------------------------------------------------------
|
||||||
include "../../../macros.inc"
|
include "../../macros.inc"
|
||||||
include "../../../proc32.inc"
|
include "../../proc32.inc"
|
||||||
include "../../../dll.inc"
|
include "../../dll.inc"
|
||||||
include "../../../KOSfuncs.inc"
|
include "../../KOSfuncs.inc"
|
||||||
include "../../../load_lib.mac"
|
include "../../load_lib.mac"
|
||||||
;include "../../../debug.inc"
|
;include "../../debug.inc"
|
||||||
|
|
||||||
include "DATA.INC"
|
include "DATA.INC"
|
||||||
include "NAME.INC"
|
include "NAME.INC"
|
Reference in New Issue
Block a user