--- nono/lib/textscreen.h 2026/04/29 17:05:12 1.1.1.10 +++ nono/lib/textscreen.h 2026/04/29 17:05:15 1.1.1.11 @@ -168,6 +168,12 @@ class TextScreen Putc(ch); } + // 座標と属性を指定して1文字出力 + void Putc(int x, int y, TA attr, uint16 ch) { + Locate(x, y); + Putc((uint)attr | ch); + } + // 現在位置に文字列を出力 void Puts(const char *str);