Nintendo SWITCH Cheat Codes Download

Avoid creating cheat Request Topic​

Request cheats are made in :​

cheat-codes-ams-and-sx-os-add-and-request-general


This group provides cheat code authors to post works, share experience, learn and exchange

This group also provides cracking game players to get the latest and most complete cheats, and assist in testing

Since GBATemp is the most famous place in the industry, we hope to improve the content quality of this group

The main contents of this group include:
1. Publish personal originals.
2. Improve the quality of secondary creation (including version updates, repairs, and enhancements)
3. Request to create game cheats
4. Tutorial sharing on developing game cheat codes

For technical exchanges, sharing the code of others must attach the URL of the webpage published by the original author (do not copy the complete code)

Although the content of this group is very precious, it is provided for free, and it is not allowed to reprint it to commercial places or paid membership websites for profit.
Nintendo SWITCH Cheat Codes Download
Nintendo SWITCH Cheat Codes Download

Cheat Code Commander v1.0.0 - Initial Release

  • Thread starter Thread starter TomSwitch
  • Start date Start date
  • Views Views 1,091
  • Replies Replies 42
  • Likes Likes 20
I see what is happening now, the hex code is taking priority over the assembly code
Post automatically merged:

Members-only download
This download link is for members of the Nintendo SWITCH Cheat Codes Download group. Join the group to see it. It's free.
Thanks, now it's good
 
Assembler Input, if I tried to edit .float or .word or .double
delete the last letter and wait a second (or not deleted the whole word in rapid), the app will freeze, same goes for reverse, type .fl slowly will also freeze
 
Last edited by dsrules,
Assembler Input, if I tried to edit .float or .word or .double
delete the last letter and wait a second (or not deleted the whole word in rapid), the app will freeze, same goes for reverse, type .fl slowly will also freeze
Can't see that on my side.
 
need to have error before then no problem, very strange, mean time try getting an error first
other errors no problem, ex. mov > mon
only value type .float .dword, .word, etc... freeze

update: if I change mov w0, 1 > .float 1 > .flt 1, it won't freeze
it only freezes if the original cheat value is in .float format when copied to the left panel
 
Last edited by dsrules,
I see what is happening now, the hex code is taking priority over the assembly code
Post automatically merged:

Members-only download
This download link is for members of the Nintendo SWITCH Cheat Codes Download group. Join the group to see it. It's free.
a bug? right panel knows it ,left panel shows ERROR unknown (v1.2.9)
 

Attachments

  • 屏幕截图 2026-01-19 094709.jpg
    屏幕截图 2026-01-19 094709.jpg
    257.7 KB · Views: 6
a bug? right panel knows it ,left panel shows ERROR unknown (v1.2.9)
yes, looks like it does not like w=8
Post automatically merged:

Members-only download
This download link is for members of the Nintendo SWITCH Cheat Codes Download group. Join the group to see it. It's free.
 
Last edited by TomSwitch,
@TomSwitch, could you test on the Assembler Input window
delete (in this example str w8) on the left side of the , and see if the app would crash or not?
str w8, [x19, 0x20]
 
1770097469000.png
I deleted some ldr and it seems ok. I have no doubt some combination can crash it, if it is not too annoying I would just let it be.
 
str w8, [x1, #0x20]
I select str w8 then push delete then freeze
I deleted letters one by one from start of "str" , one by one, when i try to delete the "," then ANR & hang... maybe any way try to remove or removed the string "str w8" will cause ANR.
 
Last edited by pspmaster,
I deleted letters one by one from start of "str" , one by one, when i try to delete the "," then ANR & hang... maybe any way try to remove or removed the string "str w8" will cause ANR.
delete all from the left side of , will freeze regardless of ldr str mov or cmp
the only solution now is not to delete all before the ,
or delete the , before deleting others
 
Last edited by dsrules,
Members-only download
This download link is for members of the Nintendo SWITCH Cheat Codes Download group. Join the group to see it. It's free.


Keystone don't like malformed assembly instruction. I have added a check.

# Safety check: Keystone hangs on certain malformed instructions
# specifically those starting with characters that are not part of a mnemonic.
instr_stripped = instruction.strip()
if not instr_stripped or not (instr_stripped[0].isalpha() or instr_stripped[0] in '._'):
return None, f"Malformed assembly instruction: '{instruction}'"
 
  • Like
Reactions: pspmaster
Members-only download
This download link is for members of the Nintendo SWITCH Cheat Codes Download group. Join the group to see it. It's free.


Keystone don't like malformed assembly instruction. I have added a check.

# Safety check: Keystone hangs on certain malformed instructions
# specifically those starting with characters that are not part of a mnemonic.
instr_stripped = instruction.strip()
if not instr_stripped or not (instr_stripped[0].isalpha() or instr_stripped[0] in '._'):
return None, f"Malformed assembly instruction: '{instruction}'"
that fixed it
can this also be fixed?
.float 100.0
delete any letter from float will freeze
but delete any letter from .float 100 will not freeze (without .0)
 
that fixed it
can this also be fixed?
.float 100.0
delete any letter from float will freeze
but delete any letter from .float 100 will not freeze (without .0)
Members-only download
This download link is for members of the Nintendo SWITCH Cheat Codes Download group. Join the group to see it. It's free.


# Safety check: Keystone hangs on certain malformed instructions
# specifically those starting with characters that are not part of a mnemonic.
# We also block all dot-prefixed directives because Keystone hangs on some (like .flot)
# and valid ones should have been handled by the directive parser already.
instr_stripped = instruction.strip()
if not instr_stripped or not (instr_stripped[0].isalpha() or instr_stripped[0] == '_'):
return None, f"Malformed assembly instruction: '{instruction}'"
 
  • Like
Reactions: pspmaster

Group statistics

Group owner:
matias3ds
Members:
86054
Threads:
7759
Messages:
42258
Photos:
0

Site & Scene News