Skip to content

Commit 925f506

Browse files
committed
Remember to include the flash and flipdisk commands on the NC200 disk.
Fixes: #78
1 parent 5870156 commit 925f506

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

arch/nc200/build.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@
126126
"camel80.com": "third_party/camelforth",
127127
"copy.com": "cpmtools+copy",
128128
"dump.com": "cpmtools+dump",
129+
"flash.com": "arch/nc200/tools+flash",
130+
"flipdisk.com": "arch/nc200/tools+flipdisk",
129131
"mkfs.com": "cpmtools+mkfs",
130132
"qe.com": "cpmtools+qe_NC200",
131133
"rawdisk.com": "cpmtools+rawdisk",

arch/nc200/tools/build.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
from third_party.zmac.build import zmac
2+
from build.ack import ackprogram
3+
4+
zmac(
5+
name="flipdisk",
6+
relocatable=False,
7+
src="./flipdisk.z80",
8+
deps=[
9+
"arch/nc200+addresses",
10+
],
11+
)
12+
13+
ackprogram(
14+
name="flash",
15+
srcs=["./flash.c", "./pcmcia-tools.s"],
16+
)

0 commit comments

Comments
 (0)