diff options
author | Ben Bridle <ben@derelict.engineering> | 2025-04-11 16:18:31 +1200 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2025-04-11 16:18:31 +1200 |
commit | 6d016989b0ff5f600f3bdaced1ebf443d2f32da7 (patch) | |
tree | b8732928eec01632e0cba965e6437718598f3251 /src/bin | |
parent | 2d29e79715c1208655316cce517713590894f5a6 (diff) | |
download | torque-asm-6d016989b0ff5f600f3bdaced1ebf443d2f32da7.zip |
Add support for the CP/M CMD file module format
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/tq.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/tq.rs b/src/bin/tq.rs index b27f702..ffbc330 100644 --- a/src/bin/tq.rs +++ b/src/bin/tq.rs @@ -172,6 +172,7 @@ Created by Ben Bridle. if !dry_run { let result = match format { + Format::Cmd => format_cmd(&segments), Format::Debug => format_debug(&segments), Format::Inhx => format_inhx(&segments), Format::Inhx32 => format_inhx32(&segments), |