mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-22 16:16:16 +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
|