Changeset 8eacefcc in rtems
- Timestamp:
- 02/29/00 16:35:45 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b6f9b5f1
- Parents:
- 6f645ff
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/cpu/c4x/rtems/score/c4x.h
r6f645ff r8eacefcc 330 330 331 331 __asm__( "ldi if, %0" : "=r" (_if_value) ); 332 return (void *)((_if_value & 0xffff ) >> 8);332 return (void *)((_if_value & 0xffff0000) >> 8); 333 333 } 334 334 … … 344 344 #endif 345 345 _if_value &= 0xffff; 346 _ittp_field = (((unsigned int) _ittp_value) <<8);347 _if_value |= _ittp_field ;346 _ittp_field = (((unsigned int) _ittp_value) >> 8); 347 _if_value |= _ittp_field << 16 ; 348 348 #ifdef _TMS320C40 349 349 c4x_set_iif( _if_value ); -
c/src/lib/libbsp/c4x/c4xsim/README
r6f645ff r8eacefcc 6 6 BOARD: Simulator in GDB 7 7 BUS: N/A 8 CPU FAMILY: ppc8 CPU FAMILY: C3X/C4X 9 9 CPU: C32 and others 10 10 COPROCESSORS: N/A … … 15 15 PERIPHERALS 16 16 =========== 17 TIMERS: PPC internal Timebase register17 TIMERS: Internal Timer 18 18 RESOLUTION: ??? 19 19 SERIAL PORTS: simulated via -
c/src/lib/libbsp/c4x/c4xsim/include/Makefile.am
r6f645ff r8eacefcc 27 27 28 28 include $(top_srcdir)/../../../../../../automake/local.am 29 30 H_FILES = $(srcdir)/../../../shared/include/coverhd.h \31 $(srcdir)/bsp.h $(srcdir)/simio.h $(srcdir)/../../../shared/include/bspIo.h32 -
c/src/lib/libbsp/c4x/shared/bspspuriousinit.c
r6f645ff r8eacefcc 17 17 #include <bsp.h> 18 18 #include <bspIo.h> 19 #include <simio.h>20 19 21 20 /* -
cpukit/score/cpu/c4x/rtems/score/c4x.h
r6f645ff r8eacefcc 330 330 331 331 __asm__( "ldi if, %0" : "=r" (_if_value) ); 332 return (void *)((_if_value & 0xffff ) >> 8);332 return (void *)((_if_value & 0xffff0000) >> 8); 333 333 } 334 334 … … 344 344 #endif 345 345 _if_value &= 0xffff; 346 _ittp_field = (((unsigned int) _ittp_value) <<8);347 _if_value |= _ittp_field ;346 _ittp_field = (((unsigned int) _ittp_value) >> 8); 347 _if_value |= _ittp_field << 16 ; 348 348 #ifdef _TMS320C40 349 349 c4x_set_iif( _if_value ); -
make/custom/c3xsim.cfg
r6f645ff r8eacefcc 5 5 # 6 6 7 RTEMS_BSP=c3 sxim7 RTEMS_BSP=c3xsim 8 8 RTEMS_CPU_MODEL=c32 9 9 CPU_CFLAGS = -mcpu=32 -
make/custom/c4xsim.cfg
r6f645ff r8eacefcc 1 1 # 2 # Config file for the "bare" BSP2 # Configuration file for the GDB C4x simulator 3 3 # 4 4 # $Id$
Note: See TracChangeset
for help on using the changeset viewer.