1
0
Fork 0
mirror of https://git.suyu.dev/suyu/dynarmic.git synced 2025-03-04 21:26:06 +00:00
dynarmic/externals/xbyak/test/lib_test.cpp

14 lines
156 B
C++
Raw Normal View History

#include "lib.h"
void init()
{
static bool init = true;
printf("in lib_test %d\n", init);
if (!init) return;
init = false;
X::a.put();
putReg();
}