Changeset 224fbcd in rtems


Ignore:
Timestamp:
08/14/03 13:17:46 (21 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Children:
ba312810
Parents:
e78007c
Message:

2003-08-14 Joel Sherrill <joel@…>

PR 455/bsps

  • rtems/score/cpu.h: Added missing CPU_swap_u16().
Location:
cpukit/score/cpu/h8300
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/score/cpu/h8300/ChangeLog

    re78007c r224fbcd  
     12003-08-14      Joel Sherrill <joel@OARcorp.com>
     2
     3        PR 455/bsps
     4        * rtems/score/cpu.h: Added missing CPU_swap_u16().
     5
    162003-08-11      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    27
  • cpukit/score/cpu/h8300/rtems/score/cpu.h

    re78007c r224fbcd  
    11631163 *  H8300 Specific Information:
    11641164 *
    1165  *  XXX
     1165 *  This is the generic implementation.
    11661166 */
    11671167 
     
    11811181}
    11821182
     1183#define CPU_swap_u16( value ) \
     1184  (((value&0xff) << 8) | ((value >> 8)&0xff))
     1185
    11831186/* to be provided by the BSP */
    11841187extern void H8BD_Install_IRQ(
Note: See TracChangeset for help on using the changeset viewer.