Skip to content

Commit 030c9f8

Browse files
committed
Z8E builds.
1 parent 4074e49 commit 030c9f8

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

arch/brother/pn8510/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
"mkfs.com": "cpmtools+mkfs",
150150
"rawdisk.com": "cpmtools+rawdisk",
151151
"qe.com": "cpmtools+qe_BROTHER_POWERNOTE",
152-
#"z8e.com": "third_party/z8e+z8e_POWERNOTE",
152+
"z8e.com": "third_party/z8e+z8e_POWERNOTE",
153153
#"ted.com": "third_party/ted+ted_POWERNOTE",
154154
},
155155
)

third_party/z8e/build.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from third_party.zmac.build import zmac
2+
from third_party.ld80.build import ld80
3+
from glob import glob
4+
5+
VERSIONS = [
6+
"NC200",
7+
"WP2450DS",
8+
"POWERNOTE",
9+
]
10+
11+
for version in VERSIONS:
12+
zmac(
13+
name="z8e_" + version,
14+
src="./src/z8e.z80",
15+
deps=[
16+
"./src/terminal.inc",
17+
"./" + version.lower() + "/config.inc",
18+
]
19+
+ glob("third_party/z8e/src/*.tty"),
20+
relocatable=False,
21+
)

0 commit comments

Comments
 (0)