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

Atmosphere's GDB

  • Thread starter Thread starter TomSwitch
  • Start date Start date
  • Views Views 10,476
  • Replies Replies 155
  • Likes Likes 29
I wonder if PINCE support ARMv64:rofl:
Probably not, but it is an open-source project, so maybe some talented person from the community can add that feature. I was poking around in the source a bit, but there's a lot there and I don't know Python that well lol. I've given up on it for now..
 
Probably not, but it is an open-source project, so maybe some talented person from the community can add that feature. I was poking around in the source a bit, but there's a lot there and I don't know Python that well lol. I've given up on it for now..
Just saw this one
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.

not test for it
 
  • Like
Reactions: FloDoc
Just saw this one
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.

not test for it
Does it support deductive searching?? That's the real question! What would be nice, is to have an all-in-one cheat tool that can search, trace and break values.
 
Does it support deductive searching?? That's the real question! What would be nice, is to have an all-in-one cheat tool that can search, trace and break values.
Edizon-SE is fine enough, but we need to detach / attach between GDBstub and it
 
Edizon-SE is fine enough, but we need to detach / attach between GDBstub and it
Search is most efficiently done on the Switch. If there is someone skilled in making plug in for IDA pro on the switch side either a mod to dmnt.gen2 or noexs sysmodule can have the local search capability. A all in one interface on IDA pro would be really cool.

But if this someone exist maybe fix IDA pro's GDB interface problem with Switch GDBstub first. Maybe a quick one to do the segments definition automatically :)
 
Last edited by TomSwitch,
  • Like
Reactions: Eiffel2018
Search is most efficiently done on the Switch. If there is someone skilled in making plug in for IDA pro on the switch side either a mod to dmnt.gen2 or noexs sysmodule can have the local search capability. A all in one interface on IDA pro would be really cool.

But if this someone exist maybe fix IDA pro's GDB interface problem with Switch GDBstub first. Maybe a quick one to do the segments definition automatically :)
As I know, there is no breakpoint function in DNMT (NOEXS may have but not sure), is it possible that any SE-tools connect GDB to get Breakpoint (or better trace a point with registers log)?
It would be wonderful that Edizon SE can handle switching between DBMT/GDB automatically
 
As I know, there is no breakpoint function in DNMT (NOEXS may have but not sure), is it possible that any SE-tools connect GDB to get Breakpoint (or better trace a point with registers log)?
It would be wonderful that Edizon SE can handle switching between DBMT/GDB automatically
Besides, there is a modules like GDB
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.
I've tested before.
It is good for trace codes using F7/F8 without any issue.
However, it cannot edit the memory or asm code with this sys-module
 
Last edited by Eiffel2018,
Search is most efficiently done on the Switch. If there is someone skilled in making plug in for IDA pro on the switch side either a mod to dmnt.gen2 or noexs sysmodule can have the local search capability. A all in one interface on IDA pro would be really cool.

But if this someone exist maybe fix IDA pro's GDB interface problem with Switch GDBstub first. Maybe a quick one to do the segments definition automatically :)
It would be really cool if IDA could handle everything. I know that with this GDBstub some talented person or group of people are going to solve this. I love Edizon, but honestly, having to switch between app and detaching and attaching makes it a laborious thing to do lol.
 
But if this someone exist maybe fix IDA pro's GDB interface problem with Switch GDBstub first. Maybe a quick one to do the segments definition automatically :)
A python script may do such task,
however, I am a beginner of IDAPython, I've tried, I cannot get the instant of GBD with the py code
It may be caused my IDA had upgrade to python3, not the IDA built-in py2
1637812073100.png
 
As I know, there is no breakpoint function in DNMT (NOEXS may have but not sure), is it possible that any SE-tools connect GDB to get Breakpoint (or better trace a point with registers log)?
I think figuring out how to talk to GDB stub is doable.
It would be wonderful that Edizon SE can handle switching between DBMT/GDB automatically
There is no IPC available to ask dmnt.gen2 to detach and without the client side taking action it also won't be disconnected gracefully (like what happened if Switch go to sleep with IDA pro attached). Lucky that Switch side GDB auto detach when it goes to sleep so only PC side is messed up.

From PC side it is possible to ask dmnt to detach. Right now it is three press of buttons on pointer searcher se to make that happen (I can easily make it one button). On Switch side any of my apps that make use of dmnt call will have to be updated to handle this possibility ( I have no idea what will happen as they are today, maybe crash if they are running, needing to take care that they are not running before pressing that button isn't a good improvement from what we have now ).

1637819252160.png
 
Last edited by TomSwitch,
found the first game that crashes with gdb Surviving the Aftermath. It works when your in the main screen but when you go into a game you can't connect with devkit and ida crashes.
 
  • Wow
Reactions: Eiffel2018
found the first game that crashes with gdb Surviving the Aftermath. It works when your in the main screen but when you go into a game you can't connect with devkit and ida crashes.
Have you try to remove all sysmodules? Maybe having dmnt and dmnt.gen2 takes up too much memory. Removing \atmosphere\contents\010000000000000D will stop dmnt from loading if gdb is enabled. Try having only this directory and remove everything else first and if it does not work then also remove this one and maybe put back noexs and keep your finger crossed.
 
Last edited by TomSwitch,
  • Like
Reactions: ZER-O and patjenova
Have you try to remove all sysmodules? Maybe having dmnt and dmnt.gen2 takes up too much memory. Removing \atmosphere\contents\010000000000000D will stop dmnt from loading if gdb is enabled. Try having only this directory and remove everything else first and if it does not work then also remove this one and maybe put back noexs and keep your finger crossed.
I have tried this and with every sysmodule including dmnt removed the error is still there. Reported that to SciresM already. Hopefully there is a fix soon.
 
  • Like
Reactions: Eiffel2018
I am a bit stuck on Hyrule Warriors Age of Calamity. I am at the point where it's clear I have to do a code cave for the health, but I'm just not experienced enough to do it myself. I want to learn, so I don't want someone to do it for me, but I'd love some guidance. I went through Eiffel2018's tutorial, and it was super helpful. I found a lot! I just can't do anything with the code lol.
 

Group statistics

Group owner:
matias3ds
Members:
86095
Threads:
7776
Messages:
42293
Photos:
0

Site & Scene News