1# Copyright (c) 2022 Intel Corporation
2# SPDX-License-Identifier: Apache-2.0
3# Description:
4# Helper file to use "west flash" with the .elf file
5# this file is called by the runner for Cyclone V SoC DeKit
6
7set confirm off
8set pagination off
9
10restore ./build/zephyr/zephyr.elf
11symbol-file -readnow ./build/zephyr/zephyr.elf
12thbreak main
13jump z_arm_reset
14
15# Execute OpenOCD "resume" command to keep the target running, then quit gdb.
16mon resume
17quit
18