mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-23 00:16:17 +04:00
16 lines
185 B
C
16 lines
185 B
C
|
// See LICENSE for license details.
|
||
|
|
||
|
#ifndef _BBL_H
|
||
|
#define _BBL_H
|
||
|
|
||
|
#ifndef __ASSEMBLER__
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stddef.h>
|
||
|
|
||
|
void print_logo();
|
||
|
|
||
|
#endif // !__ASSEMBLER__
|
||
|
|
||
|
#endif
|