| 17 | |
| 18 | namespace LIEF::assembly::py { |
| 19 | void init(nb::module_& m) { |
| 20 | nb::module_ mod = m.def_submodule("assembly"); |
| 21 | |
| 22 | create<LIEF::assembly::Engine>(mod); |
| 23 | create<LIEF::assembly::Instruction>(mod); |
| 24 | create<LIEF::assembly::AssemblerConfig>(mod); |
| 25 | |
| 26 | aarch64::py::init(mod); |
| 27 | x86::py::init(mod); |
| 28 | arm::py::init(mod); |
| 29 | ebpf::py::init(mod); |
| 30 | powerpc::py::init(mod); |
| 31 | mips::py::init(mod); |
| 32 | riscv::py::init(mod); |
| 33 | } |
| 34 | } |
nothing calls this directly
no outgoing calls
no test coverage detected