Skip to content

Commit

Permalink
Rename brotherwp1 to wp1.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgiven committed Jan 7, 2024
1 parent d30e473 commit 415181b
Show file tree
Hide file tree
Showing 18 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
bazel-bin/arch/brother/pn8800/diskimage.img
bazel-bin/arch/brother/lw30/diskimage.img
bazel-bin/arch/brother/wp2450/diskimage.img
bazel-bin/arch/brotherwp1/diskimage.img
bazel-bin/arch/brother/wp1/diskimage.img
bazel-bin/arch/kayproii/diskimage.img
bazel-bin/arch/nc200/diskimage.img
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
pn8800.img
brotherop2.img
lw30.img
brotherwp1.img
wp1.img
kayproii.img
nc200.img
wp2450.img
Expand All @@ -69,7 +69,7 @@ jobs:
pn8510.img
pn8800.img
lw30.img
brotherwp1.img
wp1.img
kayproii.img
nc200.img
wp2450.img
Expand Down
2 changes: 1 addition & 1 deletion BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ filegroup(
"//arch/brother/pn8800:diskimage",
"//arch/brother/wp2450:diskimage",
"//arch/brother/lw30:diskimage",
"//arch/brotherwp1:diskimage",
"//arch/brother/wp1:diskimage",
"//arch/kayproii:diskimage",
"//arch/nc200:diskimage",
]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Currently it supports these platforms:

- [the Amstrad NC200 laptop](arch/nc200/README.md)
- [the Kaypro II](arch/kayproii/README.md)
- [the Brother WP-1 typewriter (and probably others)](arch/brotherwp1/README.md)
- [the Brother WP-1 typewriter (and probably others)](arch/brother/wp1/README.md)
- [the Brother LW-30 typewriter (and probably others)](arch/lw30/README.md)
- [the Brother WP-2450DS typewriter (and probably others)](arch/brother/wp2450/README.md)
- [the Brother PN-8510MDS SuperPowerNote laptop (and probably others)](arch/brother/pn8510/README.md)
Expand Down
6 changes: 3 additions & 3 deletions arch/brotherwp1/BUILD → arch/brother/wp1/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ BIOS_SRCS = [
"//include:cpm.lib",
"//include:cpmish.lib",
"//include:z180.lib",
"//arch/brotherwp1/include:brotherwp1.lib",
"//arch/brother/wp1/include:wp1.lib",
"//arch/common/utils:tty.lib",
"//arch/common/utils:print.lib",
":addresses",
Expand All @@ -64,10 +64,10 @@ BIOS_SRCS = [

genrule(
name = "keytab",
tools = [ "//arch/brotherwp1/utils:mkkeytab" ],
tools = [ "//arch/brother/wp1/utils:mkkeytab" ],
srcs = [],
outs = [ "keytab.inc" ],
cmd = "$(location //arch/brotherwp1/utils:mkkeytab) > $@"
cmd = "$(location //arch/brother/wp1/utils:mkkeytab) > $@"
)

# This is a 64kB file containing the entire CP/M memory image.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion arch/brotherwp1/README.md → arch/brother/wp1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Build cpmish.

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

fluxengine write brother120 -i brotherwp1.img
fluxengine write brother120 -i wp1.img

Insert the disk into the machine's drive, and then power on while holding
CODE+Q. The machine will boot from the disk.
Expand Down
2 changes: 1 addition & 1 deletion arch/brotherwp1/bios.z80 → arch/brother/wp1/bios.z80
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

maclib cpm
maclib cpmish
maclib brotherwp1
maclib wp1
maclib addresses

public SYSIN
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion arch/brotherwp1/floppy.z80 → arch/brother/wp1/floppy.z80
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

maclib cpm
maclib cpmish
maclib brotherwp1
maclib wp1

extrn SYSIN
extrn SYSOUT
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

maclib cpm
maclib cpmish
maclib brotherwp1
maclib wp1

public KBDINIT
public KBDSTAT
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion arch/brotherwp1/tty.z80 → arch/brother/wp1/tty.z80
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

maclib cpm
maclib cpmish
maclib brotherwp1
maclib wp1

extrn SYSIN
extrn SYSOUT
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 415181b

Please sign in to comment.