aboutsummaryrefslogtreecommitdiff
path: root/bbl/bbl.h
blob: 67997b93f0a2f1b7ec132232e6443eca82453d83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// See LICENSE for license details.

#ifndef _BBL_H
#define _BBL_H

#ifndef __ASSEMBLER__

#include <stdint.h>
#include <stddef.h>

uintptr_t load_kernel_elf(void* blob, size_t size);
void print_logo();

#endif // !__ASSEMBLER__

#endif