lesson 21, keyboard input and shell

This commit is contained in:
Carlos
2015-03-20 19:20:44 +01:00
parent 5aaabf189d
commit e9d0d6c388
25 changed files with 1217 additions and 3 deletions

9
21-shell/libc/mem.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef MEM_H
#define MEM_H
#include "../cpu/types.h"
void memory_copy(char *source, char *dest, int nbytes);
void memory_set(u8 *dest, u8 val, u32 len);
#endif