cambridge-asm-cli

Crates.iocambridge-asm-cli
lib.rscambridge-asm-cli
version0.16.0
sourcesrc
created_at2022-02-26 15:04:54.379218
updated_at2024-11-21 06:09:33.069695
descriptionRun pseudoassembly from Cambridge International syllabus 9618
homepage
repositoryhttps://github.com/SaadiSave/cambridge-asm
max_upload_size
id539977
size29,036
Saadi Save (SaadiSave)

documentation

README

cambridge-asm-cli

GitHub Actions Workflow Status Crates.io

Command line interface to execute pseudoassembly programs

Usage

casm -h

Cambridge Pseudoassembly Interpreter x.y.z
Saadi Save <github.com/SaadiSave>
Run pseudoassembly from Cambridge International syllabus 9618 (2021)

USAGE:
    casm <SUBCOMMAND>

OPTIONS:
    -h, --help       Print help information
    -V, --version    Print version information

SUBCOMMANDS:
    compile    Compile pseudoassembly
    help       Print this message or the help of the given subcommand(s)
    run        Run compiled or plaintext pseudoassembly

casm help run

Run compiled or plaintext pseudoassembly

Usage: casm run [OPTIONS] <PATH>

Arguments:
  <PATH>  Path to the input file containing compiled or plaintext pseudoassembly

Options:
  -v, --verbose...       Increase logging level
  -t, --bench            Show execution time
  -f, --format <FORMAT>  Format of input file [default: pasm] [possible values: pasm, json, ron, yaml, cbor]
  -h, --help             Print help

casm help compile

Compile pseudoassembly

Usage: casm compile [OPTIONS] <INPUT>

Arguments:
  <INPUT>  Path to the input file containing pseudoassembly

Options:
  -o, --output <OUTPUT>  Path to output file
  -v, --verbose...       Increase logging level
  -f, --format <FORMAT>  Format of output file [default: json] [possible values: json, ron, yaml, cbor]
  -m, --minify           Minify output
  -d, --debug            Include debuginfo
  -h, --help             Print help

Log levels

  • OFF by default
  • -v = WARN: Enable warnings
  • -vv = INFO: Enable info logs
  • -vvv = DEBUG: Enable debugging logs
  • -vvvv = TRACE: Trace execution line by line

WARN

Arithmetic overflows are logged as warnings.

INFO

General status is logged as info.

DEBUG

Steps in the parsing procedure and internal structs created are shown in debug logs

TRACE

Line-by-line execution is logged

Commit count: 211

cargo fmt