Skip to content

Commit

Permalink
Merge pull request #183 from venomix666/appconfig
Browse files Browse the repository at this point in the history
Moved serial apps to separate categories
  • Loading branch information
davidgiven authored Oct 3, 2024
2 parents f952aff + 0c766ff commit 8e02e3c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 7 deletions.
14 changes: 10 additions & 4 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
"0:ls.com": "apps+ls",
"0:stat.com": "apps+stat",
"0:submit.com": "apps+submit",
"0:xrecv.com": "apps+xrecv",
"0:xsend.com": "apps+xsend",
}

# Programs which only work on a real CP/M filesystem (not emulation).
Expand All @@ -34,8 +32,6 @@
"0:atbasic.com": "third_party/altirrabasic",
"0:atbasic.txt": "cpmfs+atbasic_txt_cpm",
"0:objdump.com": "apps+objdump",
"0:kbdtest.com": "apps+kbdtest",
"0:ansiterm.com": "apps+ansiterm",
}

BIG_APPS_SRCS = {}
Expand All @@ -49,6 +45,7 @@
"0:scrntest.com": "apps+scrntest",
"0:vt52drv.com": "apps+vt52drv",
"0:vt52test.com": "apps+vt52test",
"0:kbdtest.com": "apps+kbdtest",
}

BIG_SCREEN_APPS = {
Expand All @@ -64,3 +61,12 @@
"0:pload.com": "third_party/pascal-m+loader",
"0:hello.pas": "cpmfs+hello_pas_cpm",
}

SERIAL_APPS = {
"0:xrecv.com": "apps+xrecv",
"0:xsend.com": "apps+xsend",
}

SERIAL_SCREEN_APPS = {
"0:ansiterm.com": "apps+ansiterm",
}
2 changes: 1 addition & 1 deletion src/arch/bbcmicro/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
| BIG_APPS_SRCS
| SCREEN_APPS
| SCREEN_APPS_SRCS
| PASCAL_APPS,
| PASCAL_APPS
)

mkdfs(
Expand Down
6 changes: 5 additions & 1 deletion src/arch/nano6502/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
SCREEN_APPS,
BIG_SCREEN_APPS,
PASCAL_APPS,
SERIAL_APPS,
SERIAL_SCREEN_APPS,
)

llvmrawprogram(
Expand All @@ -34,7 +36,9 @@
| BIG_APPS_SRCS
| SCREEN_APPS
| BIG_SCREEN_APPS
| PASCAL_APPS,
| PASCAL_APPS
| SERIAL_APPS
| SERIAL_SCREEN_APPS
)

mkcpmfs(
Expand Down
4 changes: 3 additions & 1 deletion src/arch/sorbus/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
BIG_APPS,
BIG_APPS_SRCS,
PASCAL_APPS,
SERIAL_APPS,
)

llvmrawprogram(
Expand All @@ -25,7 +26,8 @@
| MINIMAL_APPS_SRCS
| BIG_APPS
| BIG_APPS_SRCS
| PASCAL_APPS,
| PASCAL_APPS
| SERIAL_APPS
)

zip(
Expand Down

0 comments on commit 8e02e3c

Please sign in to comment.