summaryrefslogtreecommitdiff
path: root/src/lib.rs
blob: 09e2fbb805fcf74b557294cf3ac5012631839996 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
const MAX_ITERATIONS_TO_STABILISE: usize = 4;
const MAX_RECURSION_DEPTH: usize = 1024;

mod stages;
mod types;
mod formats;

pub use stages::*;
pub use types::*;
pub use formats::*;

pub use assembler::*;

use log::*;