22 lines
429 B
Plaintext
22 lines
429 B
Plaintext
# Copyright (c) 2020 Synopsys, Inc. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
choice
|
|
prompt "ARC QEMU SoC Selection"
|
|
default SOC_QEMU_ARC_HS
|
|
depends on SOC_QEMU_ARC
|
|
|
|
config SOC_QEMU_ARC_EM
|
|
bool "Synopsys ARC EM in QEMU"
|
|
|
|
config SOC_QEMU_ARC_HS
|
|
bool "Synopsys ARC HS in QEMU"
|
|
|
|
config SOC_QEMU_ARC_HS6X
|
|
bool "Synopsys ARC HS6x in QEMU"
|
|
|
|
config SOC_QEMU_ARC_HS5X
|
|
bool "Synopsys ARC HS5x in QEMU"
|
|
|
|
endchoice
|