lesson 20, preliminar

This commit is contained in:
Carlos Fenollosa
2015-03-17 20:47:43 +01:00
parent c2a05935f8
commit 1a98cab56b
19 changed files with 1047 additions and 6 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