diff options
Diffstat (limited to 'src/emu/netlist/plib/pconfig.h')
-rw-r--r-- | src/emu/netlist/plib/pconfig.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/src/emu/netlist/plib/pconfig.h b/src/emu/netlist/plib/pconfig.h index c06fe3e3d2f..021bb7ff72d 100644 --- a/src/emu/netlist/plib/pconfig.h +++ b/src/emu/netlist/plib/pconfig.h @@ -19,6 +19,18 @@ #define PSTANDALONE (0) #endif +//#define PHAS_INT128 (0) + +#ifndef PHAS_INT128 +#define PHAS_INT128 (0) +#endif + +#if (PHAS_INT128) +typedef __uint128_t UINT128; +typedef __int128_t INT128; +#endif + + #if !(PSTANDALONE) #include "osdcore.h" #include "eminline.h" @@ -45,7 +57,6 @@ _name(const _name &); \ _name &operator=(const _name &); - //============================================================ // Compiling standalone //============================================================ |