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

alpha68k_n: correct audio clock for sstingry #9382

Merged
merged 2 commits into from
Mar 10, 2022

Conversation

negunma
Copy link
Contributor

@negunma negunma commented Mar 9, 2022

According to video by PCB, audio clocks need to be corrected.
Also, former 2nd and 3rd YM2203 are actually AY-3-8910s.

According to video by PCB (https://youtu.be/dA2lsgwdrU0?t=6222), audio clocks need to be corrected.
Copy link
Member

@cuavas cuavas left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What’s the basis for changing two of the sound chips on both sstingray and kyros to AY-3-8910?

Comment on lines 761 to 769
/* sound hardware */

ym2203_device &ym1(YM2203(config, "ym1", 3000000));
ym1.add_route(ALL_OUTPUTS, "speaker", 0.30);
// sound hardware
ym2203_device &ym(YM2203(config, "ym", 2000000)); // Verified from video by PCB, 24MHz/12?
ym.add_route(ALL_OUTPUTS, "speaker", 0.30);

ym2203_device &ym2(YM2203(config, "ym2", 3000000));
ym2.add_route(ALL_OUTPUTS, "speaker", 0.30);
ay8910_device &aysnd1(AY8910(config, "aysnd1", 2000000)); // Verified from video by PCB, 24MHz/12?
aysnd1.add_route(ALL_OUTPUTS, "speaker", 0.30);

ym2203_device &ym3(YM2203(config, "ym3", 3000000));
ym3.add_route(ALL_OUTPUTS, "speaker", 0.45);
ay8910_device &aysnd2(AY8910(config, "aysnd2", 2000000)); // Verified from video by PCB, 24MHz/12?
aysnd2.add_route(ALL_OUTPUTS, "speaker", 0.45);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use digit grouping so it’s easy to see order of magnitude at a glance without having to count the zeroes.

@negunma
Copy link
Contributor Author

negunma commented Mar 9, 2022

What’s the basis for changing two of the sound chips on both sstingray and kyros to AY-3-8910?

I changed sound chips according to photos of PCB shown below.
They have YM2203 and 2 AY-3-8910s.

sstingray: from past auction
u454223570 1

kyros: from blog of former developer of alpha denshi
Kyros_no_Yakata_kiban_00
Kyros_no_Yakata_kiban_01

@cuavas cuavas merged commit 4536b6f into mamedev:master Mar 10, 2022
@negunma negunma deleted the sstingry_fix_audio_clock branch March 10, 2022 18:12
wilbertpol pushed a commit to wilbertpol/mame that referenced this pull request Apr 22, 2022
Changed sstingry audio clocks to match recording from PCB.

Also changed second and third sound chips for sstingray and kyros to AY-3-8910 based on PCB photos.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants