Skip to content

Commit

Permalink
Cured deadly little oversight
Browse files Browse the repository at this point in the history
  • Loading branch information
Arakula authored Jan 30, 2021
1 parent 7e669b9 commit 0334274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dasm6500.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1139,7 +1139,7 @@ Dasm6501::Dasm6501(void) : Dasm650X()
codes = m6501_codes;
mnemo.resize(mnemo6501_count); /* expand mnemonics table */
for (int i = mnemo6500_count; i < mnemo6501_count; i++)
mnemo[i] = m6501_opcodes[i];
mnemo[i] = m6501_opcodes[i - mnemo6500_count];
useUndefined = false;
AddOption("undef", "{off|on}\tdisassemble unique undefined opcodes",
static_cast<PSetter>(&Dasm6501::Set6501Option),
Expand Down

0 comments on commit 0334274

Please sign in to comment.