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 Graham Sanderson
parent 0d666eaf29
commit d131919a09

View File

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