1
Files
lecture-operating-system-de…/c_os/devices/fonts/Fonts.cc
2022-06-17 15:27:48 +02:00

20 lines
575 B
C++

// Jakob Falke, oostubs
// Github: https://gitlab.cs.fau.de/um15ebek/oostubs
// vim: set et ts=4 sw=4:
#include "devices/fonts/Fonts.h"
#include "devices/fonts/Font_8x16.h"
#include "devices/fonts/Font_8x8.h"
#include "devices/fonts/Font_acorn_8x8.h"
#include "devices/fonts/Font_pearl_8x8.h"
#include "devices/fonts/Font_sun_12x22.h"
#include "devices/fonts/Font_sun_8x16.h"
Font_8x16 std_font_8x16;
Font_8x8 std_font_8x8;
Font_acorn_8x8 acorn_font_8x8;
Font_pearl_8x8 pearl_font_8x8;
Font_sun_12x22 sun_font_12x22;
Font_sun_8x16 sun_font_8x16;