holey-bytes/hbasm/src/macros/mod.rs

15 lines
250 B
Rust
Raw Normal View History

2023-07-11 19:16:23 -05:00
pub mod asm;
pub mod text;
macro_rules! impl_both {
($($tt:tt)*) => {
impl Assembler {
$crate::macros::asm::impl_asm!($($tt)*);
}
$crate::macros::text::gen_text!($($tt)*);
};
}
pub(crate) use impl_both;