https://github.com/sajattack/tms34010-asm
Disassembler for TI TMS34010 CPU (and maybe an assembler too one day)
https://github.com/sajattack/tms34010-asm
cpu disassembler rust tms34010
Last synced: 4 months ago
JSON representation
Disassembler for TI TMS34010 CPU (and maybe an assembler too one day)
- Host: GitHub
- URL: https://github.com/sajattack/tms34010-asm
- Owner: sajattack
- License: mit
- Created: 2021-07-13T04:37:27.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-05T05:39:28.000Z (over 2 years ago)
- Last Synced: 2026-02-28T21:48:19.532Z (4 months ago)
- Topics: cpu, disassembler, rust, tms34010
- Language: Rust
- Homepage:
- Size: 45.9 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# tms34010-asm
## Installation
- Follow instructions to install rust at https://rustup.rs/
- then run the following
```sh
cargo install --git https://github.com/sajattack/tms34010-asm
```
## Building from a git checkout (so you can make changes)
```sh
git clone https://github.com/sajattack/tms34010-asm.git
cd tms34010-asm
cargo build --release
```
output binary will be under `/target` after running the above steps
or you can build and run in one operation by replacing
`cargo build --release`
with
`cargo run --release -- `
## Disassembler usage
```
TMS34010 Disassembler 0.1.0
Paul Sajna, hello@paulsajna.com
Disassembler for Texas Instruments TMS34010 CPU
USAGE:
tms34010-disasm [OPTIONS]
ARGS:
File to disassemble
OPTIONS:
-h, --help Print help information
-o, --offset Seek N bytes in in_file before starting disassembly [default: 0]
-p, --pc Initial program counter at start of file or seek address [default: 0]
-s, --size Limit number of bytes to disassemble
-V, --version Print version information
```