diff --git a/bindings/dotnet/UnicornManaged/Const/Ppc.fs b/bindings/dotnet/UnicornManaged/Const/Ppc.fs index ca5330f9..b859ebbc 100644 --- a/bindings/dotnet/UnicornManaged/Const/Ppc.fs +++ b/bindings/dotnet/UnicornManaged/Const/Ppc.fs @@ -405,4 +405,5 @@ module Ppc = let UC_PPC_REG_CTR = 76 let UC_PPC_REG_MSR = 77 let UC_PPC_REG_FPSCR = 78 + let UC_PPC_REG_CR = 79 diff --git a/bindings/go/unicorn/ppc_const.go b/bindings/go/unicorn/ppc_const.go index afddcfcf..bf99d1f9 100644 --- a/bindings/go/unicorn/ppc_const.go +++ b/bindings/go/unicorn/ppc_const.go @@ -400,4 +400,5 @@ const ( PPC_REG_CTR = 76 PPC_REG_MSR = 77 PPC_REG_FPSCR = 78 + PPC_REG_CR = 79 ) \ No newline at end of file diff --git a/bindings/java/unicorn/PpcConst.java b/bindings/java/unicorn/PpcConst.java index 4d2a26a9..6406260a 100644 --- a/bindings/java/unicorn/PpcConst.java +++ b/bindings/java/unicorn/PpcConst.java @@ -402,5 +402,6 @@ public interface PpcConst { public static final int UC_PPC_REG_CTR = 76; public static final int UC_PPC_REG_MSR = 77; public static final int UC_PPC_REG_FPSCR = 78; + public static final int UC_PPC_REG_CR = 79; } diff --git a/bindings/pascal/unicorn/PpcConst.pas b/bindings/pascal/unicorn/PpcConst.pas index 4e571f8e..eeeab305 100644 --- a/bindings/pascal/unicorn/PpcConst.pas +++ b/bindings/pascal/unicorn/PpcConst.pas @@ -403,6 +403,7 @@ const UC_PPC_REG_CTR = 76; UC_PPC_REG_MSR = 77; UC_PPC_REG_FPSCR = 78; + UC_PPC_REG_CR = 79; implementation end. \ No newline at end of file diff --git a/bindings/python/unicorn/ppc_const.py b/bindings/python/unicorn/ppc_const.py index ff007a49..3d733d23 100644 --- a/bindings/python/unicorn/ppc_const.py +++ b/bindings/python/unicorn/ppc_const.py @@ -398,3 +398,4 @@ UC_PPC_REG_XER = 75 UC_PPC_REG_CTR = 76 UC_PPC_REG_MSR = 77 UC_PPC_REG_FPSCR = 78 +UC_PPC_REG_CR = 79 diff --git a/bindings/ruby/unicorn_gem/lib/unicorn_engine/ppc_const.rb b/bindings/ruby/unicorn_gem/lib/unicorn_engine/ppc_const.rb index 35698b65..0dcb138c 100644 --- a/bindings/ruby/unicorn_gem/lib/unicorn_engine/ppc_const.rb +++ b/bindings/ruby/unicorn_gem/lib/unicorn_engine/ppc_const.rb @@ -400,4 +400,5 @@ module UnicornEngine UC_PPC_REG_CTR = 76 UC_PPC_REG_MSR = 77 UC_PPC_REG_FPSCR = 78 + UC_PPC_REG_CR = 79 end \ No newline at end of file