mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-02 18:53:22 +00:00
26 lines
458 B
C
26 lines
458 B
C
|
#define S
|
||
|
#define N(x) M(x, G, static)
|
||
|
#include "for-2.h"
|
||
|
#undef S
|
||
|
#undef N
|
||
|
#define S schedule(static, 32)
|
||
|
#define N(x) M(x, G, static32)
|
||
|
#include "for-2.h"
|
||
|
#undef S
|
||
|
#undef N
|
||
|
#define S schedule(auto)
|
||
|
#define N(x) M(x, G, auto)
|
||
|
#include "for-2.h"
|
||
|
#undef S
|
||
|
#undef N
|
||
|
#define S schedule(guided, 32)
|
||
|
#define N(x) M(x, G, guided32)
|
||
|
#include "for-2.h"
|
||
|
#undef S
|
||
|
#undef N
|
||
|
#define S schedule(runtime)
|
||
|
#define N(x) M(x, G, runtime)
|
||
|
#include "for-2.h"
|
||
|
#undef S
|
||
|
#undef N
|