def syntax to match tap irlen

the master tap has a 4 bit irlen
changed the instructions to be 4 bit, ie, removed the zeros.
it makes it clearer to interpret.
__archive__
Rodrigo L. Rosa 2011-08-30 13:49:44 -07:00
parent 67bb8a6cb2
commit 2aa14db677
1 changed files with 4 additions and 4 deletions

View File

@ -69,10 +69,10 @@
//----------------------------------------------------------------
// Master TAP instructions from MC56F8000RM.pdf
//----------------------------------------------------------------
#define MASTER_TAP_CMD_BYPASS 0xFF
#define MASTER_TAP_CMD_IDCODE 0x02
#define MASTER_TAP_CMD_TLM_SEL 0x05
#define MASTER_TAP_CMD_FLASH_ERASE 0x08
#define MASTER_TAP_CMD_BYPASS 0xF
#define MASTER_TAP_CMD_IDCODE 0x2
#define MASTER_TAP_CMD_TLM_SEL 0x5
#define MASTER_TAP_CMD_FLASH_ERASE 0x8
//----------------------------------------------------------------
//----------------------------------------------------------------