mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-10 20:25:26 +00:00
Set qemu parameter for MPS2 targets: -icount auto Signed-off-by: Andrei Gansari <andrei.gansari@nxp.com>
16 lines
263 B
CMake
16 lines
263 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set(EMU_PLATFORM qemu)
|
|
|
|
set(QEMU_CPU_TYPE_${ARCH} cortex-m33)
|
|
set(QEMU_FLAGS_${ARCH}
|
|
-cpu ${QEMU_CPU_TYPE_${ARCH}}
|
|
-machine mps2-an521
|
|
-nographic
|
|
-m 16
|
|
-vga none
|
|
-icount auto
|
|
)
|
|
|
|
board_set_debugger_ifnset(qemu)
|