Commit 2d646f80 authored by Dimitris Lampridis's avatar Dimitris Lampridis

sw: update to latest MT build system

parent 22077197
Subproject commit a7f004e8df41df80807d3dbe32b9d50e7a639047
Subproject commit a162c674dc9efd62344f3458dbb23996050be18e
../common/trtl-memory.ld
\ No newline at end of file
/* This is a basic linker configuration for WRTD.
*
* It expects that every MT CPU has at least 32KB
* of memory, as well as 2KB of shared memory for
* all CPUS.
*/
MEMORY
{
ram :
ORIGIN = 0x00000000,
LENGTH = 32768 - 2048
stack :
ORIGIN = 32768 - 2048,
LENGTH = 2048
smem :
ORIGIN = 0x40200000,
LENGTH = 2048
}
../common/trtl-memory.ld
\ No newline at end of file
../common/trtl-memory.ld
\ No newline at end of file
#include <stdarg.h>
#include <stdlib.h>
#include <errno.h>
#include "libmockturtle.h"
#include "mockturtle/libmockturtle.h"
#include "libwrtd.h"
#include "libwrtd-private.h"
......
......@@ -3,7 +3,7 @@
#include <stdlib.h>
#include <assert.h>
#include <errno.h>
#include "libmockturtle.h"
#include "mockturtle/libmockturtle.h"
#include "libwrtd.h"
#include "libwrtd-private.h"
......
......@@ -3,7 +3,7 @@
#include <strings.h>
#include "libwrtd.h"
#include "libmockturtle.h"
#include "mockturtle/libmockturtle.h"
#define WRTD_RETURN_IF_ERROR(status) if(status != WRTD_SUCCESS) return status
......
......@@ -3,7 +3,7 @@
#include <stdlib.h>
#include <assert.h>
#include <errno.h>
#include "libmockturtle.h"
#include "mockturtle/libmockturtle.h"
#include "libwrtd.h"
#include "libwrtd-private.h"
......
......@@ -23,7 +23,7 @@
#include <errno.h>
#include <string.h>
#include <libmockturtle.h>
#include <mockturtle/libmockturtle.h>
#include <libwrtd.h>
#include <wrtd-common.h>
#include <wrtd-internal.h>
......
......@@ -20,7 +20,7 @@
#ifndef __WRTD_TOOLS_INTERNAL_H__
#define __WRTD_TOOLS_INTERNAL_H__
#include <libmockturtle.h>
#include <mockturtle/libmockturtle.h>
#include <libwrtd.h>
struct wrtd_commands {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment