1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-23 16:36:18 +04:00
rCore/riscv-pk/bbl/logo.c
2018-07-04 16:22:20 +08:00

10 lines
108 B
C

#include <string.h>
#include "mtrap.h"
extern const char logo[];
void print_logo()
{
putstring(logo);
}