URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
Compare Revisions
- This comparison shows the changes necessary to convert path
/
- from Rev 342 to Rev 343
- ↔ Reverse comparison
Rev 342 → Rev 343
/trunk/or1ksim/testbench/uos/uos.c
42,7 → 42,7
} |
|
/* Standard function for filling memory with a constant byte. */ |
void *memset(void *dst, int c, int size) |
void *memset(void *dst, int c, size_t size) |
{ |
char *tmp = dst; |
|
/trunk/or1ksim/testbench/uos/tick.c
3,6 → 3,7
|
#include "spr_defs.h" |
#include "int.h" |
#include "support.h" |
|
/* Tick timer period */ |
unsigned long tick_period; |