aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorGareth McMullin2011-03-09 19:03:41 +1300
committerGareth McMullin2011-03-09 19:03:41 +1300
commitfcdbf8efc80f0fe17c54f4209a09a9765575ffb4 (patch)
tree3a0dc4d74f9b203e2c668f21ab11c468146a0991 /src/include
parenta6f2117d1dd74fceb088c4e6f7e54aa109ecca21 (diff)
Added a skeleton of an ARM7TDMI driver. No support yet.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/arm7tdmi.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/include/arm7tdmi.h b/src/include/arm7tdmi.h
new file mode 100644
index 0000000..ffcd6e9
--- /dev/null
+++ b/src/include/arm7tdmi.h
@@ -0,0 +1,30 @@
+/*
+ * This file is part of the Black Magic Debug project.
+ *
+ * Copyright (C) 2011 Black Sphere Technologies Ltd.
+ * Written by Gareth McMullin <gareth@blacksphere.co.nz>
+ *
+ * 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 __ARM7TDMI_H
+#define __ARM7TDMI_H
+
+#include "general.h"
+#include "jtag_scan.h"
+
+void arm7tdmi_jtag_handler(jtag_dev_t *dev);
+
+#endif
+