Skip to content

Commit d30e473

Browse files
committed
Rename brotherop2 to lw30.
1 parent 5979c9e commit d30e473

File tree

15 files changed

+15
-14
lines changed

15 files changed

+15
-14
lines changed

.github/workflows/ccpp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
path: |
3333
bazel-bin/arch/brother/pn8510/diskimage.img
3434
bazel-bin/arch/brother/pn8800/diskimage.img
35-
bazel-bin/arch/brotherop2/diskimage.img
35+
bazel-bin/arch/brother/lw30/diskimage.img
36+
bazel-bin/arch/brother/wp2450/diskimage.img
3637
bazel-bin/arch/brotherwp1/diskimage.img
3738
bazel-bin/arch/kayproii/diskimage.img
3839
bazel-bin/arch/nc200/diskimage.img
39-
bazel-bin/arch/wp2450/diskimage.img
4040

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ jobs:
5353
pn8510.img
5454
pn8800.img
5555
brotherop2.img
56+
lw30.img
5657
brotherwp1.img
5758
kayproii.img
5859
nc200.img
@@ -67,7 +68,7 @@ jobs:
6768
files: |
6869
pn8510.img
6970
pn8800.img
70-
brotherop2.img
71+
lw30.img
7172
brotherwp1.img
7273
kayproii.img
7374
nc200.img

BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ filegroup(
88
"//arch/brother/pn8510:diskimage",
99
"//arch/brother/pn8800:diskimage",
1010
"//arch/brother/wp2450:diskimage",
11-
"//arch/brotherop2:diskimage",
11+
"//arch/brother/lw30:diskimage",
1212
"//arch/brotherwp1:diskimage",
1313
"//arch/kayproii:diskimage",
1414
"//arch/nc200:diskimage",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Currently it supports these platforms:
3939
- [the Amstrad NC200 laptop](arch/nc200/README.md)
4040
- [the Kaypro II](arch/kayproii/README.md)
4141
- [the Brother WP-1 typewriter (and probably others)](arch/brotherwp1/README.md)
42-
- [the Brother LW-30 typewriter (and probably others)](arch/brotherop2/README.md)
42+
- [the Brother LW-30 typewriter (and probably others)](arch/lw30/README.md)
4343
- [the Brother WP-2450DS typewriter (and probably others)](arch/brother/wp2450/README.md)
4444
- [the Brother PN-8510MDS SuperPowerNote laptop (and probably others)](arch/brother/pn8510/README.md)
4545
- [the Brother PN-8800FXB SuperPowerNote laptop (and probably others)](arch/brother/pn8800/README.md)

arch/brotherop2/BUILD renamed to arch/brother/lw30/BUILD

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ package(default_visibility = ["//visibility:public"])
77

88
genrule(
99
name = "font_inc",
10-
tools = [ "//arch/brotherop2/utils:fontconvert" ],
10+
tools = [ "//arch/brother/lw30/utils:fontconvert" ],
1111
srcs = [ "//utils:6x7font.bdf" ],
1212
outs = [ "font.inc" ],
13-
cmd = "$(location //arch/brotherop2/utils:fontconvert) $< > $@"
13+
cmd = "$(location //arch/brother/lw30/utils:fontconvert) $< > $@"
1414
)
1515

1616
zmac(
1717
name = "boot_o",
1818
z180 = True,
1919
srcs = [
2020
"boot.z80",
21-
"//arch/brotherop2/include:brotherop2.lib",
21+
"//arch/brother/lw30/include:lw30.lib",
2222
"//arch/common/utils:tty.lib",
2323
"//include:cpmish.lib",
2424
"//include:z180.lib",
@@ -40,7 +40,7 @@ ld80(
4040
z180 = True,
4141
srcs = [
4242
n + ".z80",
43-
"//arch/brotherop2/include:brotherop2.lib",
43+
"//arch/brother/lw30/include:lw30.lib",
4444
"//arch/common/utils:print.lib",
4545
"//arch/common/utils:tty.lib",
4646
"//include:cpm.lib",

arch/brotherop2/README.md renamed to arch/brother/lw30/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Build cpmish.
4848

4949
Use FluxEngine to write this to a DD 3.5" floppy, using a command line like:
5050

51-
fluxengine write brother -i brotherop2.img
51+
fluxengine write brother -i lw30.img
5252

5353
Insert the disk into the machine's drive, power on, and press FILE to open the
5454
disk menu.

arch/brotherop2/bios.z80 renamed to arch/brother/lw30/bios.z80

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
maclib cpm
66
maclib cpmish
7-
maclib brotherop2
7+
maclib lw30
88

99
public SYSIN
1010
public SYSOUT

arch/brotherop2/boot.z80 renamed to arch/brother/lw30/boot.z80

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
; gets loaded with BBR=CBR=0x60, CBAR=0x55, which means that DRAM from
77
; physical addresses 0x65000 to 0x6ffff is mapped to logical 0x5000 to 0xffff.
88

9-
maclib brotherop2
9+
maclib lw30
1010
maclib cpmish
1111

1212
start:
File renamed without changes.

arch/brotherop2/floppy.z80 renamed to arch/brother/lw30/floppy.z80

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
maclib cpm
66
maclib cpmish
7-
maclib brotherop2
7+
maclib lw30
88

99
extrn SYSIN
1010
extrn SYSOUT

0 commit comments

Comments
 (0)