diff options
author | bd <bdunahu@operationnull.com> | 2025-05-10 18:25:23 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-10 18:25:23 -0400 |
commit | ebb2a3d33d4536bcace34e9ba95198067ae19522 (patch) | |
tree | 9773c935932ee3a4e2fdaa1d25e61ba3f06abd03 /inc/instrDTO.h | |
parent | f0f773a1f2acc3030c89fc5aa6335f667987aa2a (diff) |
Add type field to InstrDTO, required for next refactor
Diffstat (limited to 'inc/instrDTO.h')
-rw-r--r-- | inc/instrDTO.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/inc/instrDTO.h b/inc/instrDTO.h index f4ef416..98247a3 100644 --- a/inc/instrDTO.h +++ b/inc/instrDTO.h @@ -60,6 +60,10 @@ struct InstrDTO { * The register this instruction checks out. */ signed int checked_out; + /** + * The currently active union member. + */ + FieldType type; union { struct U_INT_TYPE integer; struct V_TYPE vector; |