-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Fixes to UML and DRC backends #13108
Draft
987123879113
wants to merge
24
commits into
mamedev:master
Choose a base branch
from
987123879113:drc_wip_pr
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.
+1,731
−864
Draft
Changes from 17 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
2745f1f
uml: Add new opcode UML_SETFLGS
987123879113 147c20d
uml: Add new opcodes MULUH and MULSH
987123879113 9705f20
uml: Add new opcode BREAK
987123879113 917fe33
uml: Add note about fcmp opcode flags
987123879113 1fb75fb
uml: Fix simplified multiplication and division operations to use cor…
987123879113 d46e0ea
uml: Enforce limit for shift operand to be consistent with the backends
987123879113 f6eb41f
uml: Add additional documentation for opcodes with unclear naming
987123879113 9c8a865
drcbec: Add more methods of accessing OP_CARRY
987123879113 bacafdf
drcbec: Fix flag calculation for BSWAP opcode
987123879113 1aa065c
drcbec: Implement new MULUH/MULSH opcodes
987123879113 5a2b3b5
drcbec: Fix flag calculation for MULS
987123879113 88cfebf
drcbec: Make calculation for shift and rotation opcodes consistent
987123879113 c6ea674
drcbec: Implement new SETFLGS opcode
987123879113 942ed0b
drcbec: Add stub for BREAK opcode
987123879113 e4a1003
drcbex64: Implement new BREAK, SETFLGS, MULUH, MULSH opcodes + variou…
987123879113 ed93185
drcbex86: Implement new BREAK, SETFLGS, MULUH, and MULSH opcodes + va…
987123879113 cd4a9c8
ppcdrc: Change MULLWx/MULLWOx to use new MULSH opcode
987123879113 eb697c5
drcbec: Fix subb
987123879113 9bbcb5e
Use osd_break_into_debugger instead of int3 for OP_BREAK
987123879113 2e4d33f
Use lahf/sahf instead of pushfd/popfd
987123879113 7da0d8e
Pass message to osd_break_into_debugger
987123879113 ebd4f49
Rename MULUH/MULSH to MULULW/MULSLW
987123879113 a82298a
x64: Fix status flag calculations
987123879113 6ca688e
x64: Simplify mululw/mulslw flag calculation
987123879113 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
There are no files selected for viewing
This file contains 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.
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.
Should this still call
osd_break_in_debugger
on BREAK for consistency?