You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
185 B
16 lines
185 B
6 years ago
|
// 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
|