mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-07-19 08:38:14 +10:00
Add new flash driver for internal flash of onsemi RSL10 device. Valgrind-clean. Clang AddressSanitizer shows no errors. Signed-off-by: Toms Stūrmanis <toms.sturmanis@gmail.com> Change-Id: I8030542cb9805e94f56d7a69404cef5d88d6dd5a Reviewed-on: https://review.openocd.org/c/openocd/+/7115 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
29 lines
661 B
ArmAsm
29 lines
661 B
ArmAsm
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/***************************************************************************
|
|
* Copyright (C) 2022 by Toms Stūrmanis *
|
|
* toms.sturmanis@gmail.com *
|
|
***************************************************************************/
|
|
|
|
.text
|
|
.syntax unified
|
|
.cpu cortex-m4
|
|
.thumb
|
|
.align 8
|
|
|
|
/*
|
|
* Params :
|
|
* r0-r2 = arguments
|
|
* r3 = target address in rom
|
|
*/
|
|
|
|
.thumb_func
|
|
.global _start
|
|
_start:
|
|
launch_program_in_rom:
|
|
// variables are already set, addres to jump is in r3
|
|
blx r3
|
|
exit:
|
|
// Wait for OpenOCD
|
|
bkpt #0x00
|