source: rtems/c/src/lib/libcpu/i386/byteorder.h @ 3f4598e

4.115
Last change on this file since 3f4598e was 3f4598e, checked in by Joel Sherrill <joel.sherrill@…>, on 01/28/11 at 20:38:09

2011-01-28 Joel Sherrill <joel.sherrilL@…>

  • byteorder.h, cpu.h, page.c: Fix typo where license said found in found in.
  • Property mode set to 100644
File size: 597 bytes
Line 
1/*
2 *  The license and distribution terms for this file may be
3 *  found in the file LICENSE in this distribution or at
4 *  http://www.rtems.com/license/LICENSE.
5 *
6 * $Id$
7 */
8
9#ifndef _LIBCPU_BYTEORDER_H
10#define _LIBCPU_BYTEORDER_H
11
12static inline void st_le32(volatile uint32_t   *addr, uint32_t   value)
13{
14  *(addr)=value ;
15}
16
17static inline uint32_t   ld_le32(volatile uint32_t   *addr)
18{
19  return(*addr);
20}
21
22static inline void st_le16(volatile uint16_t   *addr, uint16_t   value)
23{
24  *(addr)=value ;
25}
26
27static inline uint16_t   ld_le16(volatile uint16_t   *addr)
28{
29  return(*addr);
30}
31
32
33#endif
Note: See TracBrowser for help on using the repository browser.