20 Commits

Author SHA1 Message Date
Max
88c24062b1 Update programs/games/solitare/solitare.asm 2026-03-04 19:04:41 +00:00
Max
8f499f78d5 Upload files to "programs/games/solitare"
Final version of game
2026-03-04 17:23:46 +00:00
Max
5f4b293767 Upload files to "programs/games/solitare"
FIX adding score
2026-03-03 11:28:08 +00:00
Max
0efc35f8b2 Upload files to "programs/games/solitare"
Add KOSfuncs.inc
2026-03-02 22:02:21 +00:00
Max
836735d28c Update programs/games/solitare/solitare.asm 2026-03-02 19:11:11 +00:00
Max
dd15125384 Upload files to "programs/games/solitare"
V1.5 windows mode
2026-03-02 19:06:54 +00:00
Max
5a47b26aeb Delete programs/games/solitare/solitare.asm 2026-03-02 19:05:36 +00:00
Max
e1320d573f Upload files to "programs/games/solitare"
New version, Pixel clipping on edge od screen
2026-03-01 13:56:52 +00:00
Max
c9484c2f9b Delete programs/games/solitare/solitare.asm 2026-03-01 13:55:03 +00:00
Max
848719b5c1 Upload files to "programs/games/solitare"
Refactored version of CARD game
2026-03-01 12:30:28 +00:00
Max
e2b3ccf541 Delete programs/games/solitare/solitare.asm 2026-03-01 12:28:31 +00:00
Max
932a0fed7d Update programs/games/solitare/solitare.asm 2026-02-27 20:09:48 +00:00
Max
7cb981914d Update programs/games/solitare/solitare.asm 2026-02-27 19:23:44 +00:00
79f8b27cfe games/solitaires: add to image build 2026-02-27 21:08:05 +02:00
8d55a1cfc8 games/solitaries: fix build, part 2 2026-02-27 20:55:35 +02:00
Taldariner
eb686f3083 Merge branch 'max-patch-1' of https://git.kolibrios.org/Max/kolibrios into max-patch-1 2026-02-27 20:51:04 +02:00
Taldariner
756fa8dd66 apps/solitaires: fix build, translate comments to English 2026-02-27 20:50:04 +02:00
Max
4495fd5981 Update programs/games/Tupfile.lua 2026-02-27 18:39:23 +00:00
Max
593ae0bd7f Upload files to "programs/games"
Hi, this is a simple solitaire game project.
2026-02-27 18:19:32 +00:00
Max
b464de6265 Upload files to "programs/games" 2026-02-27 11:10:19 +00:00
3 changed files with 1417 additions and 0 deletions

View File

@@ -506,6 +506,7 @@ tup.append_table(img_files, {
{"GAMES/TANKS", VAR_PROGS .. "/games/tanks/tanks"},
{"GAMES/TETRIS", VAR_PROGS .. "/games/tetris/tetris"},
{"GAMES/C4", VAR_PROGS .. "/games/c4/c4"},
{"GAMES/SOLITARE", VAR_PROGS .. "/games/solitare/solitare"},
{"LIB/ARCHIVER.OBJ", VAR_PROGS .. "/fs/kfar/trunk/kfar_arc/kfar_arc.obj"},
{"LIB/BOX_LIB.OBJ", VAR_PROGS .. "/develop/libraries/box_lib/trunk/box_lib.obj"},
{"LIB/BUF2D.OBJ", VAR_PROGS .. "/develop/libraries/buf2d/trunk/buf2d.obj"},

View File

@@ -0,0 +1,7 @@
if tup.getconfig("NO_FASM") ~= "" then return end
HELPERDIR = (tup.getconfig("HELPERDIR") == "") and "../.." or tup.getconfig("HELPERDIR")
tup.include(HELPERDIR .. "/use_fasm.lua")
add_include(tup.getvariantdir())
tup.rule("echo lang fix " .. ((tup.getconfig("LANG") == "") and "en_US" or tup.getconfig("LANG")) .. " > %o", {"lang.inc"})
tup.rule("solitare.asm", FASM .. " %f %o " .. tup.getconfig("KPACK_CMD"), "solitare")

File diff suppressed because it is too large Load Diff