1
0
mirror of https://github.com/lefticus/6502-cpp.git synced 2025-07-14 23:23:59 +00:00

Fix handling of sbc/sub and enable parsing of -fverbose-asm

This commit is contained in:
Jason Turner
2021-05-09 17:31:44 -06:00
parent 9fe26641b7
commit eedec41b1e
2 changed files with 14 additions and 11 deletions

View File

@ -6,6 +6,8 @@
bool optimize(std::vector<mos6502> &instructions)
{
// return false;
if (instructions.size() < 2) {
return false;
}