source: rtems/tools/cpu/nios2/memory.h @ 5f5f681

4.104.115
Last change on this file since 5f5f681 was 16fd5a9, checked in by Joel Sherrill <joel.sherrill@…>, on 08/15/06 at 21:02:55

2006-08-15 Kolja Waschk <kawk@…>

  • linkcmds.c, linkcmds.h, memory.c, memory.h, sample.ptf: New files.
  • bridges.c: corrected detection of bridged connections
  • clocks.c: removed a printf
  • linkcmds.[ch] new files, added output of linker script
  • Makefile.am: added new files
  • memory.[ch]: new files, detection of memory in SOPC configuration
  • nios2gen.c: updated command line parsing and output control
  • output.[ch]: improved output of BSP header file
  • ptf.[ch]: added ptf_dump_ptf_item and small fixes
  • sample.ptf: new file, sample configuration for nios2gen
  • README: updated
  • Property mode set to 100644
File size: 482 bytes
Line 
1/*
2 *  Copyright (c) 2006 Kolja Waschk rtemsdev/ixo.de
3 *
4 *  The license and distribution terms for this file may be
5 *  found in the file LICENSE in this distribution or at
6 *  http://www.rtems.com/license/LICENSE.
7 *
8 *  $Id$
9 */
10
11#ifndef __MEMORY_H
12#define __MEMORY_H 1
13
14#include "devices.h"
15
16typedef struct memdsc
17{
18  unsigned long base;
19  unsigned long size;
20  device_desc *dev;
21  struct memdsc *next;
22}
23memory_desc;
24
25memory_desc *find_memory(device_desc *devices);
26
27#endif
28
29
Note: See TracBrowser for help on using the repository browser.