13 lines
250 B
C
Executable File
13 lines
250 B
C
Executable File
#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[]);
|
|
void reverse(char s[]);
|
|
int strlen(char s[]);
|
|
|
|
#endif
|