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

NES core missing sounds in Super Mario Bros 3 #42

Open
vanfanel opened this issue Dec 3, 2016 · 5 comments
Open

NES core missing sounds in Super Mario Bros 3 #42

vanfanel opened this issue Dec 3, 2016 · 5 comments

Comments

@vanfanel
Copy link

vanfanel commented Dec 3, 2016

Hi,

Has anybody else noticed that the NES core is missing some SMB3 sound effects?
-The sound effect of Mario materializing on the map screen is missing.
-The sound effect of Mario flying with the tanooki or racoon suits has missing notes.

@Sakari369
Copy link

Yes. Noticing some missing sounds on other games too, like in Lifeforce when you destroy the grapper like things in the first level.

@vanfanel
Copy link
Author

@inDigiNeous : Do you have any idea on what the problem could be?

@greyrogue
Copy link

The issue is here:

wire ValidFreq = Period[10:3] >= 8 && (SweepNegate || !NewSweepPeriod[11]);

Instead of:
wire ValidFreq = Period[10:3] >= 8 && (SweepNegate || !NewSweepPeriod[11]);
It should be:
wire ValidFreq = (|Period[10:3]) && (SweepNegate || !NewSweepPeriod[11]);
The test is for Period >= 8, but the code is accidently, effectively testing for Period>=64.

@sebdel
Copy link
Contributor

sebdel commented Apr 3, 2018

@greyrogue, you are my hero.

@vanfanel
Copy link
Author

vanfanel commented Apr 3, 2018

@greyrogue : Awesome! It seems to work perfectly well, Mario 3 sounds are complete now!!

Also, do you see a flickering area on the upper-left part of the screen? Is it a PPU problem or a video signal problem? It's easy to see in Super Mario Bros. 1.

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

No branches or pull requests

4 participants