mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-23 08:26:17 +04:00
10 lines
108 B
C
10 lines
108 B
C
#include <string.h>
|
|
#include "mtrap.h"
|
|
|
|
extern const char logo[];
|
|
|
|
void print_logo()
|
|
{
|
|
putstring(logo);
|
|
}
|