2008-03-15 21:00:23 +01:00
|
|
|
/****************************************************************************
|
2021-03-08 22:39:04 +01:00
|
|
|
* boards/z80/ez80/ez80f910200kitg/include/board.h
|
2008-03-15 21:00:23 +01:00
|
|
|
*
|
2021-03-16 16:36:09 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2008-03-15 21:00:23 +01:00
|
|
|
*
|
2021-03-16 16:36:09 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2008-03-15 21:00:23 +01:00
|
|
|
*
|
2021-03-16 16:36:09 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2008-03-15 21:00:23 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-08-09 15:22:39 +02:00
|
|
|
#ifndef __BOARDS_Z80_EZ80_EZ80f910200KITG_INCLUDE_BOARD_H
|
|
|
|
#define __BOARDS_Z80_EZ80_EZ80f910200KITG_INCLUDE_BOARD_H
|
2008-03-15 21:00:23 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-04-08 17:15:17 +02:00
|
|
|
* Pre-processor Definitions
|
2008-03-15 21:00:23 +01:00
|
|
|
****************************************************************************/
|
2014-04-14 00:22:22 +02:00
|
|
|
|
2009-02-26 03:07:53 +01:00
|
|
|
/* Clocking */
|
|
|
|
|
|
|
|
#define EZ80_SYS_CLK_FREQ 50000000
|
|
|
|
|
2008-03-15 21:00:23 +01:00
|
|
|
/* LED pattern definitions */
|
|
|
|
|
|
|
|
#define LED_STARTED 0
|
|
|
|
#define LED_HEAPALLOCATE 1
|
|
|
|
#define LED_IRQSENABLED 2
|
|
|
|
#define LED_STACKCREATED 3
|
|
|
|
#define LED_IDLE 4
|
|
|
|
#define LED_INIRQ 5
|
|
|
|
#define LED_ASSERTION 6
|
|
|
|
#define LED_SIGNAL 6
|
|
|
|
#define LED_PANIC 7
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
#define EXTERN extern "C"
|
2019-08-09 15:22:39 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
2008-03-15 21:00:23 +01:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-01-31 19:07:39 +01:00
|
|
|
#endif /* __BOARDS_Z80_EZ80_EZ80f910200KITG_INCLUDE_BOARD_H */
|