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
Change the plain-text Readme.txt to a markdown-using Readme.md. #6
Merged
Conversation
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
Properly escaped the underscores in the Windows registry notation.
Updated the "Project Site" link to point to the github page. Also added links to the forums and wiki. Also fixed some list indentation in the system requirements.
…n the system requirements list (thanks go to neobrain for pointing this out).
neobrain
added a commit
that referenced
this pull request
Jan 29, 2014
Change the plain-text Readme.txt to a markdown-using Readme.md.
|
Preview: https://github.com/lioncash/dolphin/blob/d7268dd176a2f8ea276694cac9f2a5c54065d372/Readme.md Could you make the "usage" line monospace? |
|
Also a few more things to monospace: file names (VS solution names), build steps, ... |
|
neobrain why did you merge this without testing :( |
delroth
referenced
this pull request
Jul 12, 2014
Make the emulation stop asynchronous to prevent deadlocks.
JeremyRand
pushed a commit
to JeremyRand/dolphin
that referenced
this pull request
Apr 1, 2015
Fix Direct3D extended mode fullscreen bug
JeremyRand
pushed a commit
to JeremyRand/dolphin
that referenced
this pull request
Apr 1, 2015
update from original
Merged
FaultyPine
pushed a commit
to FaultyPine/dolphin
that referenced
this pull request
Apr 24, 2022
Ubjson refactor
Zopolis4
pushed a commit
to Zopolis4/dolphin
that referenced
this pull request
Jun 8, 2022
add linux support
Sintendo
added a commit
to Sintendo/dolphin
that referenced
this pull request
Nov 1, 2022
Turn multiplications by a power of two into bitshifts. Before: 0x52800817 mov w23, #0x40 0x1b167ef6 mul w22, w23, w22 After: 0x531a66d6 lsl w22, w22, dolphin-emu#6
Sintendo
added a commit
to Sintendo/dolphin
that referenced
this pull request
Nov 1, 2022
By taking advantage of ARM64's ability to shift an input register by any amount, we can calculate multiplication by a number that is one more than a power of two with a single instruction. Before: 0x52800838 mov w24, #0x41 0x1b187f7b mul w27, w27, w24 After: 0x0b1b1b7b add w27, w27, w27, lsl dolphin-emu#6
Sintendo
added a commit
to Sintendo/dolphin
that referenced
this pull request
Nov 2, 2022
Turn multiplications by a power of two into bitshifts. Before: 0x52800817 mov w23, #0x40 0x1b167ef6 mul w22, w23, w22 After: 0x531a66d6 lsl w22, w22, dolphin-emu#6
Sintendo
added a commit
to Sintendo/dolphin
that referenced
this pull request
Nov 2, 2022
By taking advantage of ARM64's ability to shift an input register by any amount, we can calculate multiplication by a number that is one more than a power of two with a single instruction. Before: 0x52800838 mov w24, #0x41 0x1b187f7b mul w27, w27, w24 After: 0x0b1b1b7b add w27, w27, w27, lsl dolphin-emu#6
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in 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.
No description provided.