MCPcopy Create free account
hub / github.com/lief-project/LIEF / init

Function init

api/python/src/asm/init.cpp:19–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17
18namespace LIEF::assembly::py {
19void 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected