Initial commit

This commit is contained in:
Richard Patel 2021-08-08 02:59:07 +02:00
commit a8de638aaf
5 changed files with 1619 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
.idea/

25
Cargo.lock generated Normal file
View File

@ -0,0 +1,25 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "autocfg"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
name = "num-traits"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
[[package]]
name = "ppc750cl"
version = "0.1.0"
dependencies = [
"num-traits",
]

8
Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "ppc750cl"
version = "0.1.0"
edition = "2018"
authors = ["Richard Patel <me@terorie.dev>"]
[dependencies]
num-traits = "0.2.14"

6
README.md Normal file
View File

@ -0,0 +1,6 @@
# ppc750cl
Rust tools for working with the PowerPC 750CL family of processors.
Working on a disassembler at the moment.
Nothing to see here yet.

1578
src/main.rs Normal file

File diff suppressed because it is too large Load Diff