Espresso 0.0.2a
This commit is contained in:
@ -2,6 +2,6 @@
|
||||
#define _KERNEL_BOOT_H
|
||||
|
||||
|
||||
uint8_t parse_boot_data(const char* data);
|
||||
void clear_bss(void);
|
||||
|
||||
#endif
|
||||
|
||||
@ -3,6 +3,7 @@
|
||||
|
||||
#include <types.h>
|
||||
|
||||
void intro_begin(void);
|
||||
int16_t begin_anim(const char* version);
|
||||
|
||||
#endif
|
||||
|
||||
7
include/kernel/ksh_debug.h
Normal file
7
include/kernel/ksh_debug.h
Normal file
@ -0,0 +1,7 @@
|
||||
#ifndef _KERNEL_SHELL_DEBUGGER_H
|
||||
#define _KERNEL_SHELL_DEBUGGER_H
|
||||
|
||||
void print_all_regs(void);
|
||||
void print_gprs(void);
|
||||
|
||||
#endif
|
||||
0
include/kernel/kshell.c
Normal file
0
include/kernel/kshell.c
Normal file
8
include/kernel/kshell.h
Normal file
8
include/kernel/kshell.h
Normal file
@ -0,0 +1,8 @@
|
||||
#ifndef _KERNEL_SHELL_H
|
||||
#define _KERNEL_SHELL_H
|
||||
|
||||
#include <types.h>
|
||||
|
||||
int kshell_start(int argc, char** argv);
|
||||
|
||||
#endif
|
||||
7
include/kernel/vars.h
Normal file
7
include/kernel/vars.h
Normal file
@ -0,0 +1,7 @@
|
||||
#ifndef _KERNEL_VARIABLES_H
|
||||
#define _KERNEL_VARIABLES_H
|
||||
|
||||
|
||||
void init_vars(void);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user