#21 : ARM64 minimal support

This commit is contained in:
Alexey R 2018-07-10 22:49:47 +03:00
parent ec66dddeae
commit 80583784bd
2 changed files with 2 additions and 1 deletions

@ -1 +1 @@
Subproject commit dd9c6bb0f07109b8d4c4c1a8da2652fd2c99e49e Subproject commit 5606c91a774b5ab0c0f4b2ce0bb34d26ed8547c8

View File

@ -1295,6 +1295,7 @@ void pykd_init()
python::enum_<kdlib::CPUType>("CPUType", "type of CPU") python::enum_<kdlib::CPUType>("CPUType", "type of CPU")
.value("I386", kdlib::CPU_I386 ) .value("I386", kdlib::CPU_I386 )
.value("AMD64", kdlib::CPU_AMD64 ) .value("AMD64", kdlib::CPU_AMD64 )
.value("ARM64", kdlib::CPU_ARM64 )
; ;
python::enum_<kdlib::VarStorage>("Location", "Location of a varibale") python::enum_<kdlib::VarStorage>("Location", "Location of a varibale")