Forgot to checkin this file

This commit is contained in:
Stanislav Shwartsman 2007-01-16 17:46:30 +00:00
parent 0e991964fd
commit 3fb402ee15

View File

@ -507,6 +507,9 @@
#endif
#define GET32L(val64) ((Bit32u)(((Bit64u)(val64)) & 0xFFFFFFFF))
#define GET32H(val64) ((Bit32u)(((Bit64u)(val64)) >> 32))
// now that Bit32u and Bit64u exist, defined bx_address
#if BX_SUPPORT_X86_64
typedef Bit64u bx_address;