1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-01-25 19:46:10 +00:00

litedram: Update to new LiteX/LiteDRAM version

Things have changed a bit in upstream LiteX. LiteDRAM now exposes a
wishbone for the CSRs for example.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
Benjamin Herrenschmidt
2020-05-12 20:27:15 +10:00
parent 13e84b0bbb
commit c19b5b8cc7
20 changed files with 7250 additions and 6131 deletions

View File

@@ -120,6 +120,7 @@ int puts(const char *str)
return 0;
}
#ifndef __USE_LIBC
size_t strlen(const char *s)
{
size_t len = 0;
@@ -129,3 +130,4 @@ size_t strlen(const char *s)
return len;
}
#endif