diff options
author | James Bowman <james.bowman@ftdichip.com> | 2015-03-23 19:15:32 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-28 02:13:34 -0400 |
commit | 49d45b20c01da11b7493a5c28bdced7558999d6d (patch) | |
tree | ebc7fe4088894120e7922f309258e6624f5f01aa /gdb/ft32-tdep.h | |
parent | f46e4eb78ba55e8bf8dedd98d7fe354729181710 (diff) | |
download | gdb-49d45b20c01da11b7493a5c28bdced7558999d6d.zip gdb-49d45b20c01da11b7493a5c28bdced7558999d6d.tar.gz gdb-49d45b20c01da11b7493a5c28bdced7558999d6d.tar.bz2 |
gdb: ft32: new port
FT32 is a new high performance 32-bit RISC core developed by FTDI for
embedded applications.
Diffstat (limited to 'gdb/ft32-tdep.h')
-rw-r--r-- | gdb/ft32-tdep.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gdb/ft32-tdep.h b/gdb/ft32-tdep.h new file mode 100644 index 0000000..5c52480 --- /dev/null +++ b/gdb/ft32-tdep.h @@ -0,0 +1,28 @@ +/* Target-dependent code for the FT32. + + Copyright (C) 2002-2015 Free Software Foundation, Inc. + + This file is part of GDB. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. */ + +#ifndef FT32_TDEP_H +#define FT32_TDEP_H + +struct gdbarch_tdep +{ + /* gdbarch target dependent data here. Currently unused for FT32. */ +}; + +#endif /* FT32_TDEP_H */ |