source: rtems/c/src/lib/libbsp/powerpc/shared/src/tictac.c @ 0e27119

4.115
Last change on this file since 0e27119 was 0e27119, checked in by Joel Sherrill <joel.sherrill@…>, on 10/11/12 at 20:52:18

Use proper 3 line form of license text

  • Property mode set to 100644
File size: 548 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup powerpc_shared
5 *
6 * @brief Source file for tic-tac code.
7 */
8
9/*
10 * Copyright (c) 2008
11 * Embedded Brains GmbH
12 * Obere Lagerstr. 30
13 * D-82178 Puchheim
14 * Germany
15 * rtems@embedded-brains.de
16 *
17 * The license and distribution terms for this file may be
18 * found in the file LICENSE in this distribution or at
19 * http://www.rtems.com/license/LICENSE.
20 */
21
22#include <stdint.h>
23
24/**
25 * @brief Referenc value for tac().
26 */
27uint32_t ppc_tic_tac = 0;
28
29/**
30 * @brief Referenc value for bam().
31 */
32uint32_t ppc_boom_bam = 0;
Note: See TracBrowser for help on using the repository browser.