summaryrefslogtreecommitdiff
path: root/src/helper/interpreter.h
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-11 12:17:56 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-11 12:17:56 +0000
commitc5b718f5e85c7a884f7610fea46ceea2c3fbd4a7 (patch)
tree74c2c110f0f40a21a846cb00f5163d66f295ca82 /src/helper/interpreter.h
parent381f9a2e8aa1697e2af3c2bcad962dfcfe7348d7 (diff)
downloadopenocd+libswd-c5b718f5e85c7a884f7610fea46ceea2c3fbd4a7.tar.gz
openocd+libswd-c5b718f5e85c7a884f7610fea46ceea2c3fbd4a7.tar.bz2
openocd+libswd-c5b718f5e85c7a884f7610fea46ceea2c3fbd4a7.tar.xz
openocd+libswd-c5b718f5e85c7a884f7610fea46ceea2c3fbd4a7.zip
- retired variable stuff.
- drscan is now a low level tcl command: execute DR scan <device> <num_bits> <value> <num_bits1> <value2> - removed obsolete partial command text support git-svn-id: svn://svn.berlios.de/openocd/trunk@791 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/interpreter.h')
-rw-r--r--src/helper/interpreter.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/helper/interpreter.h b/src/helper/interpreter.h
deleted file mode 100644
index c4f8acfb..00000000
--- a/src/helper/interpreter.h
+++ /dev/null
@@ -1,49 +0,0 @@
-/***************************************************************************
- * Copyright (C) 2005 by Dominic Rath *
- * Dominic.Rath@gmx.de *
- * *
- * 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 2 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, write to the *
- * Free Software Foundation, Inc., *
- * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
- ***************************************************************************/
-#ifndef INTERPRETER_H
-#define INTERPRETER_H
-
-#include "types.h"
-#include "command.h"
-#include "log.h"
-
-typedef struct var_field_s
-{
- int num_bits;
- u32 value;
-} var_field_t;
-
-typedef struct var_s
-{
- char *name;
- int num_fields;
- var_field_t *fields;
- struct var_s *next;
-} var_t;
-
-extern var_t *variables;
-
-struct scan_field_s;
-extern int field_le_to_host(u8 *buffer, void *priv, struct scan_field_s *field);
-
-extern var_t* get_var_by_namenum(char *namenum);
-extern int interpreter_register_commands(struct command_context_s *cmd_ctx);
-
-#endif /* INTERPRETER_H */