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