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

4.115
Last change on this file since b8fa5013 was 214cbd9, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 07/10/08 at 06:17:47
  • Simple timing functions based on a time base reference.
  • u-boot header file
  • Property mode set to 100644
File size: 545 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 found in the file
18 * LICENSE in this distribution or at http://www.rtems.com/license/LICENSE.
19 */
20
21#include <stdint.h>
22
23/**
24 * @brief Referenc value for tac().
25 */
26uint32_t ppc_tic_tac = 0;
27
28/**
29 * @brief Referenc value for bam().
30 */
31uint32_t ppc_boom_bam = 0;
Note: See TracBrowser for help on using the repository browser.