diff --git a/bindings/python/unicorn/m68k_const.py b/bindings/python/unicorn/m68k_const.py index 3858f4b7..ad335023 100644 --- a/bindings/python/unicorn/m68k_const.py +++ b/bindings/python/unicorn/m68k_const.py @@ -2,15 +2,15 @@ # M68K CPU -UC_CPU_M5206_CPU = 0 -UC_CPU_M68000_CPU = 1 -UC_CPU_M68020_CPU = 2 -UC_CPU_M68030_CPU = 3 -UC_CPU_M68040_CPU = 4 -UC_CPU_M68060_CPU = 5 -UC_CPU_M5208_CPU = 6 -UC_CPU_CFV4E_CPU = 7 -UC_CPU_ANY_CPU = 8 +UC_CPU_M68K_M5206 = 0 +UC_CPU_M68K_M68000 = 1 +UC_CPU_M68K_M68020 = 2 +UC_CPU_M68K_M68030 = 3 +UC_CPU_M68K_M68040 = 4 +UC_CPU_M68K_M68060 = 5 +UC_CPU_M68K_M5208 = 6 +UC_CPU_M68K_CFV4E = 7 +UC_CPU_M68K_ANY = 8 # M68K registers diff --git a/bindings/python/unicorn/unicorn_const.py b/bindings/python/unicorn/unicorn_const.py index 0e1e6a22..9baf4f68 100644 --- a/bindings/python/unicorn/unicorn_const.py +++ b/bindings/python/unicorn/unicorn_const.py @@ -2,11 +2,15 @@ UC_API_MAJOR = 2 UC_API_MINOR = 0 + +UC_API_PATCH = 0 +UC_API_EXTRA = 5 UC_VERSION_MAJOR = 2 UC_VERSION_MINOR = 0 -UC_VERSION_EXTRA = 0 +UC_VERSION_PATCH = 0 +UC_VERSION_EXTRA = 5 UC_SECOND_SCALE = 1000000 UC_MILISECOND_SCALE = 1000 UC_ARCH_ARM = 1