-
-
Notifications
You must be signed in to change notification settings - Fork 9
Added Analogizer, VRC7 and PAL ROM support #56
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Open
RndMnkIII
wants to merge
12
commits into
agg23:master
Choose a base branch
from
RndMnkIII:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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 changes are made to allow to use some special features relevant for Analogizer: native Zapper Lightgun, Enable/Disable DeJitter timing and use additional clock for video DAC.
At the end I'm forced to change some things in the Analogizer side to leave some logic resources shifting to BRAM when is possible. Also I've shorten the vector width in case sentences to the minimal. the last thing was to remove synchronizer for the interact.json settings, only keep sync the external_reset signal to avoid glitches on this vital signal.
I have further reduced the resources consumed by the Analogizer framework by taking advantage of the fact that the video output is 18bits instead of 24bits. I have also added a TCL script and the Windows Powershell launcher file to generate the different bitstreams from the command line. The PLL used for NTSC/PAL timing is the same (nes_pll) but the clock speed settings are adjusted based on a parameter (USE_PAL_PLL). See the build_and_install_instructions.txt file for more information on this and the generate.tcl script.
… Core Menu Fixed Analogizer Y/C and added Enable Analogizer global switch to the Core Menu
This was referenced Mar 11, 2025
Open
added bitstreams files
fix bridge address for Analogizer enable option
fixed interact.json
Added new behavior when Analogizer is disabled globally, SNAC controller selection settings are ignored and the Pocket's default controls are assigned (either the Pocket's own controls or controllers connected via the Dock).
Added support for regional settings from analogizer.bin
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
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.
Hi, this huge PR contains several commits. Basically, the core is pre-prepared for Analogizer support (enable/disable dejitter, and native Zapper support). Once this is done, Analogizer's own features are added, and the PLL needs to be modified to add a new clock output for Analogizer and the Y/C module. A later commit adds Chip32 support and adds a number of parameters to control which modules are added to the core in the bitstream, this reduction in logic resources per bitstream allows to enable the VRC7 mapper. During this process, it is also necessary to reduce the logical resource consumption to make room for all the necessary functionality. Finally, some corrections need to be made to the Analogizer video YC module, a refactored parameterized PLL module and a script needs to be added to generate output files from the command line with quartus_sh. A final modification was added to interact.json to enable/disable Analogizer globally.