mirror of
https://git.code.sf.net/p/openocd/code
synced 2025-02-16 21:36:01 +00:00
Some file miss completely the license tag. Add the SPDX tag, using the same GPL-2.0-or-later license of the OpenOCD project. The SPDX tag on files *.c is incorrect, as it should use the C99 single line comment using '//'. But current checkpatch doesn't allow C99 comments, so keep using standard C comments, by now. Change-Id: I24bd362eeb6b74f09aceb9b757d45cbfa4afe334 Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com> Reviewed-on: https://review.openocd.org/c/openocd/+/7160 Tested-by: jenkins
22 lines
370 B
C
22 lines
370 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/*
|
|
* Spansion FM4 flash macros
|
|
*
|
|
* Copyright (c) 2015 Andreas Färber
|
|
*
|
|
* Based on S6E2CC_MN709-00007 for S6E2CC/C5/C4/C3/C2/C1 series
|
|
*/
|
|
|
|
.text
|
|
.syntax unified
|
|
.cpu cortex-m4
|
|
.thumb
|
|
.thumb_func
|
|
|
|
|
|
#define FLASH_DPOL (1 << 7)
|
|
#define FLASH_TOGG (1 << 6)
|
|
#define FLASH_TLOV (1 << 5)
|
|
#define FLASH_TOGG2 (1 << 2)
|