34 lines
557 B
C
34 lines
557 B
C
#include "emu/proc.h"
|
|
#include "common.h"
|
|
|
|
char meta[] =
|
|
"{\n"
|
|
" \"version\": 1,\n"
|
|
" \"model_version\": \"O1 V1 T1 M1 D1 K1 61\",\n"
|
|
" \"app_id\": 1,\n"
|
|
" \"cpus\": [ 0, 1, 2, 3 ]\n"
|
|
//" \"cpus\": [\n"
|
|
//" {\n"
|
|
//" \"index\": 0,\n"
|
|
//" \"phyid\": 0\n"
|
|
//" },\n"
|
|
//" {\n"
|
|
//" \"index\": 1,\n"
|
|
//" \"phyid\": 1\n"
|
|
//" },\n"
|
|
//" {\n"
|
|
//" \"index\": 2,\n"
|
|
//" \"phyid\": 2\n"
|
|
//" },\n"
|
|
//" {\n"
|
|
//" \"index\": 3,\n"
|
|
//" \"phyid\": 3\n"
|
|
//" }\n"
|
|
//" ]\n"
|
|
"}";
|
|
|
|
int main(void)
|
|
{
|
|
return 0;
|
|
}
|