mini-loader 1.2.2

The mini-loader is capable of loading and executing ELF files, including Executable file and Position-Independent Executable file
Documentation
1
2
3
4
5
6
7
8
9
cfg_if::cfg_if! {
    if #[cfg(target_arch = "x86_64")]{
        mod x86_64;
    }else if #[cfg(target_arch = "riscv64")]{
        mod riscv64;
    }else if #[cfg(target_arch="aarch64")]{
        mod aarch64;
    }
}