Fix python output of IN instruction in pioasm

This commit is contained in:
graham sanderson 2021-01-30 20:40:11 -06:00 committed by Luke Wren
parent 095091208a
commit 33dbd11dad

View File

@ -215,7 +215,7 @@ struct python_output : public output_format {
if (source.empty()) {
invalid = true;
} else {
op("in");
op("in_");
op_guts(source + ", " + std::to_string(arg2 ? arg2 : 32));
}
break;