-
Notifications
You must be signed in to change notification settings - Fork 2.2k
nec/pc9801: update and re-sort QA #14316
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
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
46d4b40
nec/pc9801: update and re-sort QA
angelosa 5cca82a
nec/pc9801.cpp: reinstate this link [skip ci]
angelosa e5b97a2
nec/pc9801.cpp: hookup IDE for pc9801us, promote pc9801rs
angelosa 4d7c6af
New working software list items
angelosa 1e3de77
nec/pc9801.cpp: hookup IMG floppy format
angelosa c3c6735
New working software list items
angelosa 0202537
nec/pc9801.cpp: bulk replace FDC tags
angelosa aca9ba9
nec/pc9821.cpp: allow CanBe based machines to enter setup mode
angelosa 375f5fe
nec/pc9821.cpp: hookup built-in option for pc9821ce, fix EEPROM saving
angelosa 04fda49
nec/pc9821.cpp: fixes around pc9821cx3
angelosa f6c402b
nec/pc9821.cpp: disable BIOS view on soft resets for as/ap2/ce/cx3
angelosa 7d6e7cd
nec/pc9821.cpp: move config notes to machine configs, retire pc9821xs
angelosa ca7223c
bus/cbus/options: fix include guards
angelosa 7ae7333
nec/pc9821.cpp: allow built-in sound BIOS mappings, confirm entry 6 f…
angelosa 0c07807
New clones marked not working
angelosa 8455642
bus/cbus: placeholder hookup for QVision WaveStar sound card
angelosa 8a97055
nec/pc9821.cpp: fix Lavie class PASSWORD DESTROYED hang
angelosa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// license: BSD-3-Clause | ||
// copyright-holders: Angelo Salese | ||
|
||
#include "emu.h" | ||
#include "options.h" | ||
|
||
#include "amd98.h" | ||
#include "pc9801_26.h" | ||
#include "pc9801_55.h" | ||
#include "pc9801_86.h" | ||
#include "pc9801_118.h" | ||
#include "mpu_pc98.h" | ||
#include "pc9801_cbus.h" | ||
#include "sb16_ct2720.h" | ||
#include "sound.h" | ||
#include "wavestar.h" | ||
|
||
|
||
void pc98_cbus_devices(device_slot_interface &device) | ||
{ | ||
// official HW | ||
// PC-9801-14 | ||
device.option_add("pc9801_26", PC9801_26); | ||
device.option_add("pc9801_55u", PC9801_55U); | ||
device.option_add("pc9801_55l", PC9801_55L); | ||
device.option_add("pc9801_86", PC9801_86); | ||
device.option_add("pc9801_118", PC9801_118); | ||
device.option_add("pc9801_spb", PC9801_SPEAKBOARD); | ||
// Spark Board | ||
device.option_add("amd98", AMD98); | ||
device.option_add("mpu_pc98", MPU_PC98); | ||
device.option_add("sb16", SB16_CT2720); | ||
device.option_add("wavestar", QVISION_WAVESTAR); | ||
|
||
// doujinshi HW | ||
// MAD Factory / Doujin Hard (同人ハード) | ||
// MAD Factory Chibi-Oto: an ADPCM override for -86 | ||
// MAD Factory Otomi-chan: "TORIE9211 MAD FACTORY" printed on proto PCB, just overrides for ADPCM for -86? | ||
device.option_add("otomichan_kai", OTOMICHAN_KAI); | ||
|
||
// internal sound options | ||
device.option_add_internal("sound_pc9821ce", SOUND_PC9821CE); | ||
device.option_add_internal("sound_pc9821cx3", SOUND_PC9821CX3); | ||
} | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// license: BSD-3-Clause | ||
// copyright-holders: Angelo Salese | ||
|
||
#ifndef MAME_BUS_CBUS_OPTIONS_H | ||
#define MAME_BUS_CBUS_OPTIONS_H | ||
|
||
#pragma once | ||
|
||
void pc98_cbus_devices(device_slot_interface &device); | ||
|
||
#endif // MAME_BUS_CBUS_OPTIONS_H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.