blob: 45b248a53781cc0fc77675b3e597ee1212aea7ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{{ doNotModifyHeader }}
#include "global.h"
u32 __size = 101 * sizeof(u32);
const u32 growtbl[][101] = {
## for tbl in growtbl
// {{ tbl.name }}
{ {% for x in tbl.table %}{{ x }},{% endfor %} },
## endfor
};
|