2015-02-03 18:12:51 +00:00
|
|
|
#ifndef UTIL_H
|
|
|
|
#define UTIL_H
|
|
|
|
|
2015-02-02 11:32:46 +00:00
|
|
|
#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[]);
|
2015-02-03 18:12:51 +00:00
|
|
|
|
|
|
|
#endif
|