Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ledmington committed Oct 7, 2024
1 parent cfd3546 commit f070608
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion id/src/main/java/com/ledmington/cpu/x86/IndirectOperand.java
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ public String toString() {
+ ";reg2="
+ reg2.toString() + ";constant="
+ constant + ";displacement="
+ displacement.toString() + ";displacementType=" + displacementType + ";ptrSize=" + ptrSize
+ (displacement == null ? "null" : displacement.toString()) + ";displacementType=" + displacementType
+ ";ptrSize=" + ptrSize
+ ")";
}

Expand Down

0 comments on commit f070608

Please sign in to comment.