Convert true/false to 1/0 to make output consistent. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
diff --git a/dump_clocking.java b/dump_clocking.java index dac3683..bd077a6 100644 --- a/dump_clocking.java +++ b/dump_clocking.java
@@ -332,6 +332,14 @@ int base_pos = v.indexOf("'b"); if (base_pos != -1) v = v.substring(base_pos + 2); + + if(v.equals("true")) { + v = "1"; + } + if(v.equals("false")) { + v = "0"; + } + if (propname.startsWith("IS_") && propname.endsWith("_INVERTED")) { String pinname = propname.substring(3, propname.length() - 9); if (pinname.equals("I0") || pinname.equals("I1")) {