From 587dd5bb80364688419bb43aba4afc044ac0ef48 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Fri, 17 May 2024 07:39:05 +0200 Subject: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit A lot is missing and there is a long road ahead to make the assembler even work. Signed-off-by: Miquel Sabaté Solà --- lib/xixanta/src/lib.rs | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 lib/xixanta/src/lib.rs (limited to 'lib/xixanta/src/lib.rs') diff --git a/lib/xixanta/src/lib.rs b/lib/xixanta/src/lib.rs new file mode 100644 index 0000000..fc8ca96 --- /dev/null +++ b/lib/xixanta/src/lib.rs @@ -0,0 +1,10 @@ +#[macro_use] +extern crate lazy_static; + +// TODO: be more mindful on what's exported outside. + +pub mod assembler; +mod context; +mod errors; +pub mod instruction; +mod opcodes; -- cgit v1.2.3