From d131919a090ddc7bfc03eb949939e44ed069716c Mon Sep 17 00:00:00 2001 From: graham sanderson Date: Sat, 30 Jan 2021 20:40:11 -0600 Subject: [PATCH] Fix python output of IN instruction in pioasm --- tools/pioasm/python_output.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pioasm/python_output.cpp b/tools/pioasm/python_output.cpp index 1c702ad..5e68458 100644 --- a/tools/pioasm/python_output.cpp +++ b/tools/pioasm/python_output.cpp @@ -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;