URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [ColdFire_MCF52221_CodeWarrior/] [sources/] [support_common.h] - Rev 800
Go to most recent revision | Compare with Previous | Blame | View Log
/* * File: support_common.h * Purpose: Various project configurations. * * Notes: */ #ifndef _SUPPORT_COMMON_H_ #define _SUPPORT_COMMON_H_ /* Enable UART Support. */ #define ENABLE_UART_SUPPORT 0 #define MEMORY_INIT \ /* Initialize RAMBAR: locate SRAM and validate it */ \ move.l %#__RAMBAR + 0x21,d0; \ movec d0,RAMBAR; #define SUPPORT_ROM_TO_RAM 1 /* * Include the derivative header files */ #include "MCF52221.h" /* * Include the board specific header files */ #include "MCF52221_sysinit.h" /********************************************************************/ #endif /* _SUPPORT_COMMON_H_ */
Go to most recent revision | Compare with Previous | Blame | View Log