-
-
Notifications
You must be signed in to change notification settings - Fork 10
NES Update #58
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
base: master
Are you sure you want to change the base?
NES Update #58
Conversation
update upstream from MiSTer Passes 128/128 Accuracy Coin Tests modified lightgun module as it was causing issues with the test rom
agg23
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the PR. I was going to take this and build a workflow that automatically moves commits from upstream over, but it's clear I'm not actually going to get around to it.
A few comments on the Pocket things.
| reg hide_overscan = 0; | ||
| reg [1:0] mask_vid_edges = 0; | ||
| reg [1:0] hide_overscan = 0; | ||
| reg [1:0] mask = 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs a better name
| wire [11:0] slot_x = (|hide_overscan_s) ? (hide_overscan_s[1] ? X_MSB : X_LSB) : X_DEFAULT; | ||
| wire [11:0] slot_y = (|hide_overscan_s) ? (hide_overscan_s[1] ? Y_MSB : Y_LSB) : Y_DEFAULT; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unused?
| "options": [ | ||
| { | ||
| "value": 0, | ||
| "name": "Normal" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm unclear on what these values represent, but for backwards compatibility 0 and 1 should match the setting schema.
| "width": 280, | ||
| "height": 240, | ||
| "aspect_w": 4, | ||
| "aspect_h": 3, | ||
| "rotation": 0, | ||
| "mirror": 0 | ||
| }, | ||
| { | ||
| "width": 256, | ||
| "height": 224, | ||
| "aspect_w": 8, | ||
| "aspect_h": 7, | ||
| { | ||
| "width": 280, | ||
| "height": 240, | ||
| "aspect_w": 47, | ||
| "aspect_h": 40, | ||
| "rotation": 0, | ||
| "mirror": 0 | ||
| } | ||
| }, | ||
| { | ||
| "width": 284, | ||
| "height": 242, | ||
| "aspect_w": 4, | ||
| "aspect_h": 3, | ||
| "rotation": 0, | ||
| "mirror": 0 | ||
| }, | ||
| { | ||
| "width": 284, | ||
| "height": 242, | ||
| "aspect_w": 47, | ||
| "aspect_h": 40, | ||
| "rotation": 0, | ||
| "mirror": 0 | ||
| }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is happening with these resolutions? Are they special overscan modes?
No description provided.