oga's tools
リビジョン | 2b80abcdeb00aad07aa265bd434df3975aadbb9a (tree) |
---|---|
日時 | 2024-12-10 04:54:07 |
作者 | hyperoga <hyperoga@gmai...> |
コミッター | hyperoga |
add color() func
@@ -1,7 +1,11 @@ | ||
1 | 1 | #define cls() printf("[2J") |
2 | 2 | #define locate(x,y) printf("[%d;%dH",y,x) |
3 | 3 | |
4 | +/* c = 0-7 */ | |
5 | +#define color(c) printf("[%dm", c+30) | |
6 | + | |
4 | 7 | |
5 | 8 | /* for X68K */ |
6 | 9 | #define CUR_ON B_CURON() |
7 | 10 | #define CUR_OFF B_CUROFF() |
11 | + |