mirror of
https://github.com/azahar-emu/dynarmic
synced 2025-11-07 15:40:00 +01:00
14 lines
156 B
C++
14 lines
156 B
C++
#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();
|
|
}
|
|
|
|
|