Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bindings/java/capstone/Capstone.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ protected static class _cs_detail extends Structure {
public static class ByReference extends _cs_detail implements Structure.ByReference {};

// list of all implicit registers being read.
public short[] regs_read = new short[16];
public short[] regs_read = new short[20];
public byte regs_read_count;
// list of all implicit registers being written.
public short[] regs_write = new short[20];
public short[] regs_write = new short[47];
public byte regs_write_count;
// list of semantic groups this instruction belongs to.
public byte[] groups = new byte[16];
Expand Down