renamed contiki-sdcc-conf.h to z80def.h in order to follow the convention of cpu-dependent configuration header file name.
This commit is contained in:
parent
b4f3ab5af7
commit
efbe8ab536
1 changed files with 6 additions and 6 deletions
|
@ -27,7 +27,7 @@
|
||||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: contiki-sdcc-conf.h,v 1.3 2007/09/06 01:41:05 matsutsuka Exp $
|
* $Id: z80def.h,v 1.1 2007/09/07 04:59:06 matsutsuka Exp $
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -39,8 +39,8 @@
|
||||||
* Takahide Matsutsuka <markn@markn.org>
|
* Takahide Matsutsuka <markn@markn.org>
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef __CONTIKI_SDCC_CONF_H__
|
#ifndef __Z80_DEF_H__
|
||||||
#define __CONTIKI_SDCC_CONF_H__
|
#define __Z80_DEF_H__
|
||||||
|
|
||||||
#define CC_CONF_FUNCTION_POINTER_ARGS 1
|
#define CC_CONF_FUNCTION_POINTER_ARGS 1
|
||||||
#define CC_CONF_FASTCALL
|
#define CC_CONF_FASTCALL
|
||||||
|
@ -83,4 +83,4 @@ typedef unsigned int size_t;
|
||||||
#define uip_ipaddr_copy(dest, src) \
|
#define uip_ipaddr_copy(dest, src) \
|
||||||
memcpy(dest, src, sizeof(*dest))
|
memcpy(dest, src, sizeof(*dest))
|
||||||
|
|
||||||
#endif /* __CONTIKI_SDCC_CONF_H__ */
|
#endif /* __Z80_DEF_H__ */
|
Loading…
Reference in a new issue