summaryrefslogtreecommitdiff
path: root/stage3/font.h
diff options
context:
space:
mode:
authorLizzy Fleckenstein <eliasfleckenstein@web.de>2022-10-07 18:05:02 +0200
committerLizzy Fleckenstein <eliasfleckenstein@web.de>2022-10-07 18:05:02 +0200
commit8b9f33dd745ebba0e819927ab3906635bfb3bf34 (patch)
treeb76b534f7846ae3d47638d42b0a15d37e4896ac9 /stage3/font.h
parent1155e97dab101fd1215e12ff8737048b0f6bedaf (diff)
downloadcuddles-8b9f33dd745ebba0e819927ab3906635bfb3bf34.tar.xz
Implement fully ascii printing
Diffstat (limited to 'stage3/font.h')
-rw-r--r--stage3/font.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/stage3/font.h b/stage3/font.h
index fe525ac..fd2f2c0 100644
--- a/stage3/font.h
+++ b/stage3/font.h
@@ -1,9 +1,6 @@
#ifndef _FONT_H_
#define _FONT_H_
-#define CHAR_WIDTH 3
-#define CHAR_HEIGHT 5
-
-void print(char *line);
+void println(char *line);
#endif