Fixed jtag include paths.

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@189 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Marcel Telka 22 years ago
parent 46a2fb5ee2
commit 31adab2e0e

@ -26,10 +26,10 @@
#include <ctype.h>
#include <string.h>
#include <jtag/register.h>
#include <jtag/tap.h>
#include <jtag/ctrl.h>
#include <jtag/part.h>
#include "register.h"
#include "tap.h"
#include "ctrl.h"
#include "part.h"
#include "detect.h"

@ -25,7 +25,7 @@
#ifndef DETECT_H
#define DETECT_H
#include <jtag/part.h>
#include "part.h"
parts *detect_parts( char *db_path );

@ -31,9 +31,9 @@
#include <readline/readline.h>
#include <readline/history.h>
#include <jtag/part.h>
#include <jtag/ctrl.h>
#include <jtag/tap.h>
#include "part.h"
#include "ctrl.h"
#include "tap.h"
#include "detect.h"

@ -25,7 +25,7 @@
#include <stdlib.h>
#include <string.h>
#include <jtag/bsbit.h>
#include "bsbit.h"
bsbit *
bsbit_alloc( int bit, const char *name, int type, signal* signals, int safe )

@ -25,7 +25,7 @@
#include <stdlib.h>
#include <string.h>
#include <jtag/data_register.h>
#include "data_register.h"
data_register *
data_register_alloc( const char *name, int len )

@ -26,7 +26,7 @@
#include <stdio.h>
#include <string.h>
#include <jtag/instruction.h>
#include "instruction.h"
instruction *
instruction_alloc( const char *name, int len, const char *val )

@ -26,8 +26,8 @@
#include <string.h>
#include <stdio.h>
#include <jtag/part.h>
#include <jtag/register.h>
#include "part.h"
#include "register.h"
static char *
get_token( char *buf )

@ -25,8 +25,8 @@
#include <stdlib.h>
#include <string.h>
#include <jtag/part.h>
#include <jtag/tap.h>
#include "part.h"
#include "tap.h"
/* part */

@ -25,7 +25,7 @@
#include <stdlib.h>
#include <string.h>
#include <jtag/signal.h>
#include "signal.h"
signal *
signal_alloc( const char *name )

@ -22,7 +22,7 @@
*
*/
#include <jtag/part.h>
#include "part.h"
void
readmem( parts *ps )

@ -24,8 +24,8 @@
#include <sys/io.h>
#include <jtag/ctrl.h>
#include <jtag/state.h>
#include "ctrl.h"
#include "state.h"
#define TCK 0
#define TDI 1

@ -25,7 +25,7 @@
#include <stdlib.h>
#include <string.h>
#include <jtag/register.h>
#include "register.h"
tap_register *
register_alloc( int len )

@ -23,7 +23,7 @@
*
*/
#include <jtag/state.h>
#include "state.h"
static int state = Unknown_State;
static int trst = 0;

@ -24,10 +24,10 @@
#include <stdio.h>
#include <jtag/register.h>
#include <jtag/tap.h>
#include <jtag/ctrl.h>
#include <jtag/state.h>
#include "register.h"
#include "tap.h"
#include "ctrl.h"
#include "state.h"
void
tap_reset( void )

Loading…
Cancel
Save