Skip to content

Commit

Permalink
Fix value of CS_ARCH_SYSTEMZ in Python bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
Rot127 committed Sep 1, 2024
1 parent 31c8c8f commit 5b38c4f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bindings/python/capstone/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,11 @@
# architectures
CS_ARCH_ARM = 0
CS_ARCH_AARCH64 = 1
CS_ARCH_MIPS = 2
CS_ARCH_X86 = 3
CS_ARCH_PPC = 4
CS_ARCH_SPARC = 5
CS_ARCH_SYSTEMZ = 6
CS_ARCH_SYSTEMZ = 2
CS_ARCH_MIPS = 3
CS_ARCH_X86 = 4
CS_ARCH_PPC = 5
CS_ARCH_SPARC = 6
CS_ARCH_XCORE = 7
CS_ARCH_M68K = 8
CS_ARCH_TMS320C64X = 9
Expand Down

0 comments on commit 5b38c4f

Please sign in to comment.