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