Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename "SunriseIDE.emulators.ROM" file to "SunriseIDE.blueMSX.ROM" #129

Merged
merged 1 commit into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/Nextor 2.1 Getting Started Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ This section explains the steps needed to setup blueMSX in order to follow this

a. Download the following files from [the lastest release of Nextor in GitHub](https://github.com/Konamiman/Nextor/releases/latest):

* Nextor kernel with Sunrise IDE driver. Please choose the file with _.SunriseIDE.emulators.ROM_ extension (the _.SunriseIDE.ROM_ version works but only recgonizes the slave IDE device in emulators).
* Nextor kernel with Sunrise IDE driver. Please choose the file with _.SunriseIDE.blueMSX.ROM_ extension (the _.SunriseIDE.ROM_ version works but only recognizes the slave IDE device in blueMSX), if you are using another emulator or a physical Sunrise IDE (or compatible) controller hardware you can use the file with _.SunriseIDE.ROM_ extension instead.

* Nextor tools disk image (_tools.dsk.zip_).

Expand Down
12 changes: 6 additions & 6 deletions source/kernel/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -126,11 +126,11 @@ drivers/SunriseIDE/sunride.masteronly.bin: \
$(call assemble_as,drivers/SunriseIDE/sunride.asm,$$/sunride.masteronly.bin,--build-type abs --output-file-extension bin --define-symbols MASTER_ONLY,BAD_POPS)


### Sunrise IDE, ROM for emulators
### Sunrise IDE, ROM for blueMSX

ide-emu: drivers/SunriseIDE/Nextor-$(VERSION).SunriseIDE.emulators.ROM
ide-emu: drivers/SunriseIDE/Nextor-$(VERSION).SunriseIDE.blueMSX.ROM

drivers/SunriseIDE/Nextor-$(VERSION).SunriseIDE.emulators.ROM: \
drivers/SunriseIDE/Nextor-$(VERSION).SunriseIDE.blueMSX.ROM: \
nextor_base.dat \
drivers/SunriseIDE/driver.bin \
drivers/SunriseIDE/chgbnk.bin \
Expand All @@ -146,11 +146,11 @@ drivers/SunriseIDE/driver.bin: \
$(call assemble,drivers/SunriseIDE/driver.mac,--build-type abs --output-file-extension bin)


### Sunrise IDE, ROM for emulators, master device only
### Sunrise IDE, ROM for blueMSX, master device only

ide-masteronly-emu: drivers/SunriseIDE/Nextor-$(VERSION).SunriseIDE.MasterOnly.emulators.ROM
ide-masteronly-emu: drivers/SunriseIDE/Nextor-$(VERSION).SunriseIDE.MasterOnly.blueMSX.ROM

drivers/SunriseIDE/Nextor-$(VERSION).SunriseIDE.MasterOnly.emulators.ROM: \
drivers/SunriseIDE/Nextor-$(VERSION).SunriseIDE.MasterOnly.blueMSX.ROM: \
nextor_base.dat \
drivers/SunriseIDE/drvmonly.bin \
drivers/SunriseIDE/chgbnk.bin \
Expand Down
Loading