You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
310 B
16 lines
310 B
# Copyright (c) 2022 Carlo Caione <ccaione@baylibre.com> |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
set(SUPPORTED_EMU_PLATFORMS qemu) |
|
|
|
set(QEMU_binary_suffix riscv32) |
|
set(QEMU_CPU_TYPE_${ARCH} riscv32) |
|
|
|
set(QEMU_FLAGS_${ARCH} |
|
-nographic |
|
-machine virt |
|
-bios none |
|
-m 256 |
|
) |
|
|
|
board_set_debugger_ifnset(qemu)
|
|
|