File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 149
149
"mkfs.com" : "cpmtools+mkfs" ,
150
150
"rawdisk.com" : "cpmtools+rawdisk" ,
151
151
"qe.com" : "cpmtools+qe_BROTHER_POWERNOTE" ,
152
- # "z8e.com": "third_party/z8e+z8e_POWERNOTE",
152
+ "z8e.com" : "third_party/z8e+z8e_POWERNOTE" ,
153
153
#"ted.com": "third_party/ted+ted_POWERNOTE",
154
154
},
155
155
)
Original file line number Diff line number Diff line change
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
+ )
You can’t perform that action at this time.
0 commit comments