diff options
author | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2018-06-06 16:18:49 +0200 |
---|---|---|
committer | Sebastian Huber <sebastian.huber@embedded-brains.de> | 2018-06-14 07:31:08 +0200 |
commit | 46c2da693c209e1004e69abc7aea0752ef249940 (patch) | |
tree | 7930595fe47872f996e95d96a6d31091cbbc3c00 /tools/cpu/nios2/memory.h | |
parent | tools: Remove shgen (diff) | |
download | rtems-46c2da693c209e1004e69abc7aea0752ef249940.tar.bz2 |
tools: Remove nios2gen
All tools should be removed from the RTEMS source repository at some
point in time. Tools with a BSD-style license will be moved to the
RTEMS tools repository. Unfortunately, the this tool is RTEMS GPL
licensed.
If users of this tool still exist, they can reimplement the
functionality using a BSD-style license and add it to the RTEMS tools.
Close #3444.
Diffstat (limited to 'tools/cpu/nios2/memory.h')
-rw-r--r-- | tools/cpu/nios2/memory.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tools/cpu/nios2/memory.h b/tools/cpu/nios2/memory.h deleted file mode 100644 index 43c20787c8..0000000000 --- a/tools/cpu/nios2/memory.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) 2006 Kolja Waschk rtemsdev/ixo.de - * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.org/license/LICENSE. - */ - -#ifndef __MEMORY_H -#define __MEMORY_H 1 - -#include "devices.h" - -typedef struct memdsc -{ - unsigned long base; - unsigned long size; - device_desc *dev; - struct memdsc *next; -} -memory_desc; - -memory_desc *find_memory(device_desc *devices); - -#endif - - |