Replies: 2 comments
-
|
ASCII search was added via #609. It could still be useful to search for text-like patterns. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
What about a config for custom character encoding? For example: when A-Z = 0x45-0x5E and a-z = 0x5F-0x78, as opposed to ASCII's A-z = 0x41-0x7A... It's something I run into quite a bit so it would be neat to be able to switch between ASCII and custom 🤔 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
From @Jamiras on March 21, 2018 15:12
As a developer, I'd like to be able to search memory for string patterns. As I may not know the exact byte->tile mapping used by the game, I'd like to be able to enter a string and have the toolkit look for patterns in the memory that could imply the tile mapping.
For example, searching for "25000" would match "C2 C5 C0 C0 C0" or "06 09 04 04 04" as the second byte is 3 bytes higher than the first, and the last three are the same and two bytes lower than the first.
Copied from original issue: RetroAchievements/RASuite#62
Beta Was this translation helpful? Give feedback.
All reactions