From c4fbf6746a067eb1db7a836a52024539dde26af1 Mon Sep 17 00:00:00 2001 From: Sophie Forrest Date: Sat, 5 Oct 2024 01:38:15 +1300 Subject: feat: implement JSR instruction 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. --- Cargo.lock | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Cargo.lock') diff --git a/Cargo.lock b/Cargo.lock index 2a5f2ee..1546f56 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,6 +8,12 @@ version = "2.6.0" 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" @@ -31,6 +37,7 @@ name = "mos6502" version = "0.1.0" dependencies = [ "bitflags", + "byteorder", "tracing", "tracing-subscriber", ] -- cgit 1.4.1