From f57467e7ed29b0daeb43f5d76c6d424a658ab1d1 Mon Sep 17 00:00:00 2001 From: mio Date: Wed, 19 Jan 2022 20:10:09 +0100 Subject: [PATCH] Generate bindings --- bindings/dotnet/UnicornManaged/Const/S390x.fs | 3 ++- bindings/go/unicorn/s390x_const.go | 3 ++- bindings/java/unicorn/S390xConst.java | 3 ++- bindings/pascal/unicorn/S390xConst.pas | 3 ++- bindings/python/unicorn/s390x_const.py | 3 ++- bindings/ruby/unicorn_gem/lib/unicorn_engine/s390x_const.rb | 3 ++- 6 files changed, 12 insertions(+), 6 deletions(-) diff --git a/bindings/dotnet/UnicornManaged/Const/S390x.fs b/bindings/dotnet/UnicornManaged/Const/S390x.fs index 615a4241..405c5dc7 100644 --- a/bindings/dotnet/UnicornManaged/Const/S390x.fs +++ b/bindings/dotnet/UnicornManaged/Const/S390x.fs @@ -122,7 +122,8 @@ module S390x = let UC_S390X_REG_A14 = 63 let UC_S390X_REG_A15 = 64 let UC_S390X_REG_PC = 65 - let UC_S390X_REG_ENDING = 66 + let UC_S390X_REG_PSWM = 66 + let UC_S390X_REG_ENDING = 67 // Alias registers diff --git a/bindings/go/unicorn/s390x_const.go b/bindings/go/unicorn/s390x_const.go index 32abb2fe..e3802478 100644 --- a/bindings/go/unicorn/s390x_const.go +++ b/bindings/go/unicorn/s390x_const.go @@ -117,7 +117,8 @@ const ( S390X_REG_A14 = 63 S390X_REG_A15 = 64 S390X_REG_PC = 65 - S390X_REG_ENDING = 66 + S390X_REG_PSWM = 66 + S390X_REG_ENDING = 67 // Alias registers ) \ No newline at end of file diff --git a/bindings/java/unicorn/S390xConst.java b/bindings/java/unicorn/S390xConst.java index cc2b2a1b..8d9a343d 100644 --- a/bindings/java/unicorn/S390xConst.java +++ b/bindings/java/unicorn/S390xConst.java @@ -119,7 +119,8 @@ public interface S390xConst { public static final int UC_S390X_REG_A14 = 63; public static final int UC_S390X_REG_A15 = 64; public static final int UC_S390X_REG_PC = 65; - public static final int UC_S390X_REG_ENDING = 66; + public static final int UC_S390X_REG_PSWM = 66; + public static final int UC_S390X_REG_ENDING = 67; // Alias registers diff --git a/bindings/pascal/unicorn/S390xConst.pas b/bindings/pascal/unicorn/S390xConst.pas index 8041a19b..6ac09f19 100644 --- a/bindings/pascal/unicorn/S390xConst.pas +++ b/bindings/pascal/unicorn/S390xConst.pas @@ -120,7 +120,8 @@ const UC_S390X_REG_A14 = 63; UC_S390X_REG_A15 = 64; UC_S390X_REG_PC = 65; - UC_S390X_REG_ENDING = 66; + UC_S390X_REG_PSWM = 66; + UC_S390X_REG_ENDING = 67; // Alias registers diff --git a/bindings/python/unicorn/s390x_const.py b/bindings/python/unicorn/s390x_const.py index ec96ae66..a75a0158 100644 --- a/bindings/python/unicorn/s390x_const.py +++ b/bindings/python/unicorn/s390x_const.py @@ -115,6 +115,7 @@ UC_S390X_REG_A13 = 62 UC_S390X_REG_A14 = 63 UC_S390X_REG_A15 = 64 UC_S390X_REG_PC = 65 -UC_S390X_REG_ENDING = 66 +UC_S390X_REG_PSWM = 66 +UC_S390X_REG_ENDING = 67 # Alias registers diff --git a/bindings/ruby/unicorn_gem/lib/unicorn_engine/s390x_const.rb b/bindings/ruby/unicorn_gem/lib/unicorn_engine/s390x_const.rb index e089c090..8851026c 100644 --- a/bindings/ruby/unicorn_gem/lib/unicorn_engine/s390x_const.rb +++ b/bindings/ruby/unicorn_gem/lib/unicorn_engine/s390x_const.rb @@ -117,7 +117,8 @@ module UnicornEngine UC_S390X_REG_A14 = 63 UC_S390X_REG_A15 = 64 UC_S390X_REG_PC = 65 - UC_S390X_REG_ENDING = 66 + UC_S390X_REG_PSWM = 66 + UC_S390X_REG_ENDING = 67 # Alias registers end \ No newline at end of file