902aa402b3830b9c9aa26758390b6eb93b42a0f5
Stefan Schuermans added file headers

Stefan Schuermans authored 12 years ago

1) /* MIPS I system
Stefan Schuermans replace email address in he...

Stefan Schuermans authored 12 years ago

2)  * Copyright 2011-2012 Stefan Schuermans <stefan@blinkenarea.org>
Stefan Schuermans added file headers

Stefan Schuermans authored 12 years ago

3)  * Copyleft GNU public license V2 or later
4)  *          http://www.gnu.org/copyleft/gpl.html
5)  */
6) 
Stefan Schuermans implemented IP + ICMP, fixe...

Stefan Schuermans authored 12 years ago

7) #ifndef MEMCPY_H
8) #define MEMCPY_H
9) 
10) /**
11)  * @brief copy memory
12)  * @param[in] dest pointer to destination buffer
13)  * @param[in] src pointer to source data
14)  * @param[in] sz size of data to copy
15)  */
16) void memcpy(void *dest, const void *src, unsigned int sz);
17) 
Stefan Schuermans implement menu on LCD

Stefan Schuermans authored 12 years ago

18) /**
19)  * @brief set memory to fixed value
20)  * @param[in] dest pointer to destination buffer
21)  * @param[in] val fixed value to fill memory with
22)  * @param[in] sz size of memory to fill
23)  */
24) void memset(void *dest, int val, unsigned int sz);
25)