Lesson 18 - the IDT

This commit is contained in:
Carlos Fenollosa
2015-02-02 12:32:46 +01:00
parent a833ee8f9e
commit 69a7c1c2a6
23 changed files with 1150 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
#include "../cpu/types.h"
void memory_copy(char *source, char *dest, int nbytes);
void memory_set(u8 *dest, u8 val, u32 len);
void int_to_ascii(int n, char str[]);