From df3e9c9536a67b7de49fe752a25288b5f5dccca1 Mon Sep 17 00:00:00 2001 From: Luke Wren Date: Thu, 18 Feb 2021 16:09:35 +0000 Subject: [PATCH] Missing comma in pioasm python wait output --- 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 5964d55..fb94e52 100644 --- a/tools/pioasm/python_output.cpp +++ b/tools/pioasm/python_output.cpp @@ -203,7 +203,7 @@ struct python_output : public output_format { break; } if (!invalid) { - guts = ((arg1 & 4u) ? "1 " : "0 ") + guts; + guts = ((arg1 & 4u) ? "1, " : "0, ") + guts; op("wait"); op_guts(guts); }