menu "H8/300 architecture"
	depends on H8300

config CPU_H8300H
	bool

config CPU_H8S
	bool

choice
	prompt "Target select"

config TARGET_H8300H_SIM
	bool "H8/300H GDB Simulator"
	select CPU_H8300H

config TARGET_H8SH_SIM
	bool "H8S GDB Simulator"
	select CPU_H8S

config TARGET_AE3069
        bool "AkizukiDenshi AE3069"
	select CPU_H8300H
	
config TARGET_KANEBEBE
	bool "Nisshin Tech. KaneBebe"
	select CPU_H8300H

config TARGET_EDOSK2674
	bool "Renesas EDOSK2674"
	select CPU_H8S

endchoice

config SYS_ARCH
	default "h8300"

config SYS_CPU
	default "h8300h" if CPU_H8300H
	default "h8300s" if CPU_H8S

source "board/h8300h_sim/Kconfig"
source "board/h8300s_sim/Kconfig"
source "board/ae3069/Kconfig"
source "board/nisshin-tech/kanebebe/Kconfig"
source "board/renesas/edosk2674/Kconfig"

endmenu
