diff options
author | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2022-10-07 16:42:35 +0200 |
---|---|---|
committer | Lizzy Fleckenstein <eliasfleckenstein@web.de> | 2022-10-07 16:42:35 +0200 |
commit | 1155e97dab101fd1215e12ff8737048b0f6bedaf (patch) | |
tree | 91ac7806d9c39593a5c6972e9fe02fa6fbb882b0 /stage3/font.h | |
parent | f8397815545adb7d0da36614e0065aa68453a2e4 (diff) | |
download | cuddles-1155e97dab101fd1215e12ff8737048b0f6bedaf.tar.xz |
Font rendering
Diffstat (limited to 'stage3/font.h')
-rw-r--r-- | stage3/font.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/stage3/font.h b/stage3/font.h new file mode 100644 index 0000000..fe525ac --- /dev/null +++ b/stage3/font.h @@ -0,0 +1,9 @@ +#ifndef _FONT_H_ +#define _FONT_H_ + +#define CHAR_WIDTH 3 +#define CHAR_HEIGHT 5 + +void print(char *line); + +#endif |