diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2025-02-14 09:36:52 +1300 |
---|---|---|
committer | Ben Bridle <ben@derelict.engineering> | 2025-03-18 12:23:27 +1300 |
commit | 7d4dd52b8cfc865ae1b975ca3b6a3e72a812ebb9 (patch) | |
tree | 14ca9fa0ddcdd8c5155ddeaac241cd4f55486b6e /src/lib.rs | |
parent | f69a8f8c312ded212446082682bcabba8e3a9c9f (diff) | |
download | bedrock-asm-7d4dd52b8cfc865ae1b975ca3b6a3e72a812ebb9.zip |
Rewrite library
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 25 |
1 files changed, 5 insertions, 20 deletions
@@ -1,22 +1,7 @@ -#![feature(extract_if)] -#![feature(io_error_more)] -#![feature(map_try_insert)] +mod types; +mod stages; +pub use types::*; +pub use stages::*; -mod gather_libraries; -mod symbol_resolver; - -pub use gather_libraries::*; -pub use symbol_resolver::*; - -mod tokens; -mod translators; - -pub use tokens::*; -pub use translators::*; - -mod print; -pub use print::*; - - -pub use assembler::*; +use assembler::*; |