Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ pretty_assertions = "1.4"
commodore = ["dep:forbidden-bands"]

[[example]]
name="parser"
name="image-rider"
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ STX: An Atari ST STX Disk Image

You can run the example application with the following command:

RUST_LOG=debug cargo run --example parser -- --input FILENAME
RUST_LOG=debug cargo run --example image-rider -- --input FILENAME

To save track or sector image data (for example, the FAT filesystem
embedded in a STX image):

RUST_LOG=debug cargo run --example parser -- --input INFILENAME --output OUTFILENAME
RUST_LOG=debug cargo run --example image-rider -- --input INFILENAME --output OUTFILENAME


There are several sanity checks in the code to panic or exit the
Expand All @@ -34,7 +34,13 @@ parsing failures.
To disable checksum checks, pass the --ignore-checksums command line
flag to the parser example:

RUST_LOG=debug cargo run --example parser -- --ignore-checksums --input FILENAME
RUST_LOG=debug cargo run --example image-rider -- --ignore-checksums --input FILENAME

## Install locally

To install the example application locally, run:

cargo install --path . --examples

# Development

Expand Down
File renamed without changes.