microfetch/crates/asm
Amaan Qureshi e77976b94b
asm: extract per-arch syscall impls into separate modules
The monolithic lib.rs had grown to 2600+ lines of `#[cfg(target_arch)]`
blocks interleaved inside every `sys_*` function. Reading or modifying one
arch's syscalls meant scrolling past thirteen others. Pull each arch's asm
into `<arch>.rs`, re-exported via a single `#[cfg] #[path] mod arch;` so
`lib.rs` only contains wrappers, structs, and module dispatch. Adding a new
architecture now touches one new file plus one three-line mod decl.
2026-04-18 18:31:49 -04:00
..
src asm: extract per-arch syscall impls into separate modules 2026-04-18 18:31:49 -04:00
Cargo.toml treewide: break into multiple crates 2026-03-27 13:27:44 +03:00