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

4.104.115
Last change on this file since 5f5f681 was 037e1639, checked in by Joel Sherrill <joel.sherrill@…>, on 08/09/06 at 21:05:32

2006-08-09 Kolja Waschk <waschk@…>

  • configure.ac: New port to Altera NIOS II.
  • nios2/.cvsignore, nios2/Makefile.am, nios2/README, nios2/bridges.c, nios2/bridges.h, nios2/clocks.c, nios2/clocks.h, nios2/configure.ac, nios2/devices.c, nios2/devices.h, nios2/nios2gen.c, nios2/output.c, nios2/output.h, nios2/ptf.c, nios2/ptf.h: New files.
  • Property mode set to 100644
File size: 508 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 __NIOS2GEN_CLOCKS_H
12#define __NIOS2GEN_CLOCKS_H 1
13
14#include "ptf.h"
15
16typedef struct clockdsc
17{
18    char *name;
19    char *cfgname;
20    unsigned long freq;
21    struct clockdsc *next;
22}
23clock_desc;
24
25clock_desc *find_clocks( struct ptf *ptf, struct ptf *cfg );
26
27#endif
28
Note: See TracBrowser for help on using the repository browser.