mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 15:40:00 +01:00
9 lines
102 B
C
9 lines
102 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
#if defined(__x86_64__) && defined(__ILP32__)
|
|
puts("x32");
|
|
#endif
|
|
}
|