diff options
| author | Sophie Forrest <git@sophieforrest.com> | 2024-10-05 01:38:15 +1300 |
|---|---|---|
| committer | Sophie Forrest <git@sophieforrest.com> | 2024-10-05 01:38:15 +1300 |
| commit | c4fbf6746a067eb1db7a836a52024539dde26af1 (patch) | |
| tree | 948c5812ebf6c4272c6cc0bc22f960d55775bd4c /Cargo.lock | |
| parent | 48ac2fa41c8da78cc4c26a5175476b972f1663da (diff) | |
I decided to pull in byteorder to ease up some of the work here. Additionally, the test program has been modified, and I've added a todo for the LDR Absolute instruction.
Diffstat (limited to '')
| -rw-r--r-- | Cargo.lock | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 2a5f2ee..1546f56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9,6 +9,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" [[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] name = "cfg-if" version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -31,6 +37,7 @@ name = "mos6502" version = "0.1.0" dependencies = [ "bitflags", + "byteorder", "tracing", "tracing-subscriber", ] |