diff options
Diffstat (limited to 'src/emu/netlist/plib/pstate.h')
-rw-r--r-- | src/emu/netlist/plib/pstate.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/emu/netlist/plib/pstate.h b/src/emu/netlist/plib/pstate.h index 0350b0fe309..b42d3dac882 100644 --- a/src/emu/netlist/plib/pstate.h +++ b/src/emu/netlist/plib/pstate.h @@ -32,6 +32,9 @@ enum pstate_data_type_e { NOT_SUPPORTED, DT_CUSTOM, DT_DOUBLE, +#if (PHAS_INT128) + DT_INT128, +#endif DT_INT64, DT_INT16, DT_INT8, @@ -63,6 +66,10 @@ NETLIST_SAVE_TYPE(double, DT_DOUBLE); NETLIST_SAVE_TYPE(float, DT_FLOAT); NETLIST_SAVE_TYPE(INT8, DT_INT8); NETLIST_SAVE_TYPE(UINT8, DT_INT8); +#if (PHAS_INT128) +NETLIST_SAVE_TYPE(INT128, DT_INT128); +NETLIST_SAVE_TYPE(UINT128, DT_INT128); +#endif NETLIST_SAVE_TYPE(INT64, DT_INT64); NETLIST_SAVE_TYPE(UINT64, DT_INT64); NETLIST_SAVE_TYPE(bool, DT_BOOLEAN); |