core: pointers are 8B on 64 bytes

This commit is contained in:
Gregory Hainaut 2016-01-14 00:44:40 +01:00
parent d623453451
commit 8c3798e96b
1 changed files with 4 additions and 0 deletions

View File

@ -242,4 +242,8 @@ static void recLUT_SetPage(uptr reclut[0x10000], uptr hwlut[0x10000],
hwlut[page] = 0u - (pagebase << 16);
}
#ifdef __x86_64__
static_assert( sizeof(BASEBLOCK) == 8, "BASEBLOCK is not 8 bytes" );
#else
static_assert( sizeof(BASEBLOCK) == 4, "BASEBLOCK is not 4 bytes" );
#endif