| 8 | |
| 9 | namespace LIEF::assembly::x86::py { |
| 10 | void init(nb::module_& m) { |
| 11 | nb::module_ mod = m.def_submodule("x86"); |
| 12 | |
| 13 | create<OPCODE>(mod); |
| 14 | create<REG>(mod); |
| 15 | create<Instruction>(mod); |
| 16 | create<Operand>(mod); |
| 17 | } |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected