Skip to content

Commit

Permalink
Disassembly now shows autocomments in Goodasm. #122
Browse files Browse the repository at this point in the history
  • Loading branch information
travisgoodspeed committed Nov 30, 2024
1 parent 248799b commit 8a19049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gatorom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ QString GatoROM::dis(){
return QString("ERROR: Architecture not set in Edit/Decoding.");

if(assembler=="goodasm")
process.start("goodasm", QStringList() << "-dba" << "--"+a << "-");
process.start("goodasm", QStringList() << "-dbaA" << "--"+a << "-");
else if(assembler=="r2" || assembler=="rasm2")
process.start("rasm2", QStringList() << "-BD" <<"-a" << a << "-f" << "-");
else // unidasm default.
Expand Down

0 comments on commit 8a19049

Please sign in to comment.