1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-24 00:46:17 +04:00
rCore/riscv-pk/bbl/logo.c

10 lines
108 B
C
Raw Normal View History

2018-07-04 12:22:20 +04:00
#include <string.h>
#include "mtrap.h"
extern const char logo[];
void print_logo()
{
putstring(logo);
}