contrib: replace the GPLv2-or-later license tag
[fw/openocd] / contrib / loaders / flash / at91sam7x / dcc.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2
3 /***************************************************************************
4  *   Copyright (C) 2007 by Pavel Chromy                                    *
5  *   chromy@asix.cz                                                        *
6  ***************************************************************************/
7 #ifndef dccH
8 #define dccH
9
10 #include "platform.h"
11
12 /* debug channel read (debugger->MCU) */
13 uint32 dcc_rd(void);
14
15 /* debug channel write (MCU->debugger) */
16 int dcc_wr(uint32 data);
17
18 #endif