From c671efe79899e4f0242ecda46692a818525dc444 Mon Sep 17 00:00:00 2001 From: lazymio Date: Wed, 5 Jan 2022 22:00:59 +0100 Subject: [PATCH] Update bindings --- bindings/dotnet/UnicornManaged/Const/Arm.fs | 15 ++++++++------- bindings/go/unicorn/arm_const.go | 15 ++++++++------- bindings/java/unicorn/ArmConst.java | 15 ++++++++------- bindings/pascal/unicorn/ArmConst.pas | 15 ++++++++------- bindings/python/unicorn/arm_const.py | 15 ++++++++------- .../unicorn_gem/lib/unicorn_engine/arm_const.rb | 15 ++++++++------- 6 files changed, 48 insertions(+), 42 deletions(-) diff --git a/bindings/dotnet/UnicornManaged/Const/Arm.fs b/bindings/dotnet/UnicornManaged/Const/Arm.fs index a571722b..326b32db 100644 --- a/bindings/dotnet/UnicornManaged/Const/Arm.fs +++ b/bindings/dotnet/UnicornManaged/Const/Arm.fs @@ -35,13 +35,14 @@ module Arm = let UC_CPU_ARM_PXA260 = 23 let UC_CPU_ARM_PXA261 = 24 let UC_CPU_ARM_PXA262 = 25 - let UC_CPU_ARM_PXA270A0 = 26 - let UC_CPU_ARM_PXA270A1 = 27 - let UC_CPU_ARM_PXA270B0 = 28 - let UC_CPU_ARM_PXA270B1 = 29 - let UC_CPU_ARM_PXA270C0 = 30 - let UC_CPU_ARM_PXA270C5 = 31 - let UC_CPU_ARM_MAX = 32 + let UC_CPU_ARM_PXA270 = 26 + let UC_CPU_ARM_PXA270A0 = 27 + let UC_CPU_ARM_PXA270A1 = 28 + let UC_CPU_ARM_PXA270B0 = 29 + let UC_CPU_ARM_PXA270B1 = 30 + let UC_CPU_ARM_PXA270C0 = 31 + let UC_CPU_ARM_PXA270C5 = 32 + let UC_CPU_ARM_MAX = 33 // ARM registers diff --git a/bindings/go/unicorn/arm_const.go b/bindings/go/unicorn/arm_const.go index 87177e20..81eac268 100644 --- a/bindings/go/unicorn/arm_const.go +++ b/bindings/go/unicorn/arm_const.go @@ -30,13 +30,14 @@ const ( CPU_ARM_PXA260 = 23 CPU_ARM_PXA261 = 24 CPU_ARM_PXA262 = 25 - CPU_ARM_PXA270A0 = 26 - CPU_ARM_PXA270A1 = 27 - CPU_ARM_PXA270B0 = 28 - CPU_ARM_PXA270B1 = 29 - CPU_ARM_PXA270C0 = 30 - CPU_ARM_PXA270C5 = 31 - CPU_ARM_MAX = 32 + CPU_ARM_PXA270 = 26 + CPU_ARM_PXA270A0 = 27 + CPU_ARM_PXA270A1 = 28 + CPU_ARM_PXA270B0 = 29 + CPU_ARM_PXA270B1 = 30 + CPU_ARM_PXA270C0 = 31 + CPU_ARM_PXA270C5 = 32 + CPU_ARM_MAX = 33 // ARM registers diff --git a/bindings/java/unicorn/ArmConst.java b/bindings/java/unicorn/ArmConst.java index 7ae2d9fa..6524a8b3 100644 --- a/bindings/java/unicorn/ArmConst.java +++ b/bindings/java/unicorn/ArmConst.java @@ -32,13 +32,14 @@ public interface ArmConst { public static final int UC_CPU_ARM_PXA260 = 23; public static final int UC_CPU_ARM_PXA261 = 24; public static final int UC_CPU_ARM_PXA262 = 25; - public static final int UC_CPU_ARM_PXA270A0 = 26; - public static final int UC_CPU_ARM_PXA270A1 = 27; - public static final int UC_CPU_ARM_PXA270B0 = 28; - public static final int UC_CPU_ARM_PXA270B1 = 29; - public static final int UC_CPU_ARM_PXA270C0 = 30; - public static final int UC_CPU_ARM_PXA270C5 = 31; - public static final int UC_CPU_ARM_MAX = 32; + public static final int UC_CPU_ARM_PXA270 = 26; + public static final int UC_CPU_ARM_PXA270A0 = 27; + public static final int UC_CPU_ARM_PXA270A1 = 28; + public static final int UC_CPU_ARM_PXA270B0 = 29; + public static final int UC_CPU_ARM_PXA270B1 = 30; + public static final int UC_CPU_ARM_PXA270C0 = 31; + public static final int UC_CPU_ARM_PXA270C5 = 32; + public static final int UC_CPU_ARM_MAX = 33; // ARM registers diff --git a/bindings/pascal/unicorn/ArmConst.pas b/bindings/pascal/unicorn/ArmConst.pas index 32558aea..c62e9c6c 100644 --- a/bindings/pascal/unicorn/ArmConst.pas +++ b/bindings/pascal/unicorn/ArmConst.pas @@ -33,13 +33,14 @@ const UC_CPU_ARM_PXA260 = 23; UC_CPU_ARM_PXA261 = 24; UC_CPU_ARM_PXA262 = 25; - UC_CPU_ARM_PXA270A0 = 26; - UC_CPU_ARM_PXA270A1 = 27; - UC_CPU_ARM_PXA270B0 = 28; - UC_CPU_ARM_PXA270B1 = 29; - UC_CPU_ARM_PXA270C0 = 30; - UC_CPU_ARM_PXA270C5 = 31; - UC_CPU_ARM_MAX = 32; + UC_CPU_ARM_PXA270 = 26; + UC_CPU_ARM_PXA270A0 = 27; + UC_CPU_ARM_PXA270A1 = 28; + UC_CPU_ARM_PXA270B0 = 29; + UC_CPU_ARM_PXA270B1 = 30; + UC_CPU_ARM_PXA270C0 = 31; + UC_CPU_ARM_PXA270C5 = 32; + UC_CPU_ARM_MAX = 33; // ARM registers diff --git a/bindings/python/unicorn/arm_const.py b/bindings/python/unicorn/arm_const.py index 36fac155..be63377c 100644 --- a/bindings/python/unicorn/arm_const.py +++ b/bindings/python/unicorn/arm_const.py @@ -28,13 +28,14 @@ UC_CPU_ARM_PXA255 = 22 UC_CPU_ARM_PXA260 = 23 UC_CPU_ARM_PXA261 = 24 UC_CPU_ARM_PXA262 = 25 -UC_CPU_ARM_PXA270A0 = 26 -UC_CPU_ARM_PXA270A1 = 27 -UC_CPU_ARM_PXA270B0 = 28 -UC_CPU_ARM_PXA270B1 = 29 -UC_CPU_ARM_PXA270C0 = 30 -UC_CPU_ARM_PXA270C5 = 31 -UC_CPU_ARM_MAX = 32 +UC_CPU_ARM_PXA270 = 26 +UC_CPU_ARM_PXA270A0 = 27 +UC_CPU_ARM_PXA270A1 = 28 +UC_CPU_ARM_PXA270B0 = 29 +UC_CPU_ARM_PXA270B1 = 30 +UC_CPU_ARM_PXA270C0 = 31 +UC_CPU_ARM_PXA270C5 = 32 +UC_CPU_ARM_MAX = 33 # ARM registers diff --git a/bindings/ruby/unicorn_gem/lib/unicorn_engine/arm_const.rb b/bindings/ruby/unicorn_gem/lib/unicorn_engine/arm_const.rb index c0e5b049..232e0161 100644 --- a/bindings/ruby/unicorn_gem/lib/unicorn_engine/arm_const.rb +++ b/bindings/ruby/unicorn_gem/lib/unicorn_engine/arm_const.rb @@ -30,13 +30,14 @@ module UnicornEngine UC_CPU_ARM_PXA260 = 23 UC_CPU_ARM_PXA261 = 24 UC_CPU_ARM_PXA262 = 25 - UC_CPU_ARM_PXA270A0 = 26 - UC_CPU_ARM_PXA270A1 = 27 - UC_CPU_ARM_PXA270B0 = 28 - UC_CPU_ARM_PXA270B1 = 29 - UC_CPU_ARM_PXA270C0 = 30 - UC_CPU_ARM_PXA270C5 = 31 - UC_CPU_ARM_MAX = 32 + UC_CPU_ARM_PXA270 = 26 + UC_CPU_ARM_PXA270A0 = 27 + UC_CPU_ARM_PXA270A1 = 28 + UC_CPU_ARM_PXA270B0 = 29 + UC_CPU_ARM_PXA270B1 = 30 + UC_CPU_ARM_PXA270C0 = 31 + UC_CPU_ARM_PXA270C5 = 32 + UC_CPU_ARM_MAX = 33 # ARM registers