diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2025-12-04 01:09:21 +0100 |
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2025-12-05 01:57:20 +0100 |
| commit | c7c5925d86fd3e36069ee3689b1c0a1f6df600f9 (patch) | |
| tree | 045e99ca2b9dbda88c25239490fafae8e6145df8 | |
| parent | 34ae31ffc8a00145f8657aba8dc672818a231d49 (diff) | |
Prints conpiled ancestor more compactly
| -rwxr-xr-x | salis.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -302,7 +302,8 @@ if args.command in ["bench", "new"] and args.anc is not None: if not found: error("Unrecognized instruction in ancestor file:", line) - info(f"Compiled ancestor file '{anc_path}' into byte array:", anc_bytes) + anc_repr = f"[{','.join(map(str, anc_bytes))}]" + info(f"Compiled ancestor file '{anc_path}' into byte array:", anc_repr) # ------------------------------------------------------------------------------ # Emit C source |
