refactoring the Makefile for the firmware so that it is easier to understand and...
[goodfet] / firmware / apps / jtag / jtagxscale.c
1 /*! \file jtagxscale.c
2   \author Dave Huseby <dave@linuxprogrammer.org>
3   \brief Intel XScale JTAG (32-bit)
4 */
5
6 #include "platform.h"
7 #include "command.h"
8 #include "jtag.h"
9
10 //! Handles XScale JTAG commands.  Forwards others to JTAG.
11 void xscalehandle(unsigned char app,
12                   unsigned char verb,
13                   unsigned long len)
14 {    
15     switch(verb) 
16     {
17         case START:
18         case STOP:
19         case PEEK:
20         case POKE:
21         default:
22             jtaghandle(app,verb,len);
23     }
24 }