* arch/z80/src/ez80/chip.h
*
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*
****************************************************************************/
#ifndef __ARCH_Z80_SRC_EZ80_CHIP_H
#define __ARCH_Z80_SRC_EZ80_CHIP_H
* Included Files
****************************************************************************/
#ifndef __ASSEMBLY__
# include <stdint.h>
#endif
#if defined(CONFIG_ARCH_CHIP_EZ80F91)
# include "ez80f91.h"
#elif defined(CONFIG_ARCH_CHIP_EZ80F92)
# include "ez80f92.h"
#elif defined(CONFIG_ARCH_CHIP_EZ80F93)
# include "ez80f93.h"
#else
# error "Register definitions not provided for this chip"
#endif
* Pre-processor Definitions
****************************************************************************/
#define EZ80_C_FLAG 0x01
#define EZ80_N_FLAG 0x02
#define EZ80_PV_FLAG 0x04
#define EZ80_H_FLAG 0x10
#define EZ80_Z_FLAG 0x40
#define EZ80_S_FLAG 0x80
* Public Data
****************************************************************************/
#ifndef __ASSEMBLY__
#ifdef __cplusplus
#define EXTERN extern "C"
extern "C"
{
#else
#define EXTERN extern
#endif
EXTERN uint32_t ez80_systemclock;
* Public Function Prototypes
****************************************************************************/
#undef EXTERN
#ifdef __cplusplus
}
#endif
#endif
#endif