lesson 19, IRQs

This commit is contained in:
Carlos Fenollosa
2015-03-17 20:18:06 +01:00
parent c8db77fea9
commit c2a05935f8
13 changed files with 858 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#ifndef UTIL_H
#define UTIL_H
#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[]);
#endif