From 99f3950ac446172e9d5044eff7fa26665a51dc01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnim=20L=C3=A4uger?= Date: Thu, 4 Jun 2009 21:12:49 +0000 Subject: [PATCH] force Base = DECIMAL for BOUNDARY_LENGTH attribute git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1643 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- jtag/ChangeLog | 4 ++++ jtag/src/bsdl/bsdl_flex.l | 2 +- urjtag/ChangeLog | 4 ++++ urjtag/src/bsdl/bsdl_flex.l | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/jtag/ChangeLog b/jtag/ChangeLog index 5bc5602b..7ebb7379 100644 --- a/jtag/ChangeLog +++ b/jtag/ChangeLog @@ -1,3 +1,7 @@ +2009-06-04 Arnim Laeuger + + * src/bsdl/bsdl_flex.l: force Base = DECIMAL for BOUNDARY_LENGTH attribute + 2009-05-26 Arnim Laeuger * src/bus/bf561_ezkit.c, src/bus/sharc21065l.c, src/bus/bf537_stamp.c, diff --git a/jtag/src/bsdl/bsdl_flex.l b/jtag/src/bsdl/bsdl_flex.l index d93a82cc..6d0d39d8 100644 --- a/jtag/src/bsdl/bsdl_flex.l +++ b/jtag/src/bsdl/bsdl_flex.l @@ -291,7 +291,7 @@ ISC_Illegal_Exit ISC_ILLEGAL_EXIT {Instruction_Private} {return( INSTRUCTION_PRIVATE ); } {Register_Access} {BEGIN(REG); yyextra->Base = DECIMAL; return( REGISTER_ACCESS ); } -{Boundary_Length} {return( BOUNDARY_LENGTH ); } +{Boundary_Length} {yyextra->Base = DECIMAL; return( BOUNDARY_LENGTH ); } {Boundary_Register} {BEGIN(BOU); yyextra->Base = DECIMAL; return( BOUNDARY_REGISTER ); } {Idcode_Register} {yyextra->Base = BIN_X; return( IDCODE_REGISTER ); } diff --git a/urjtag/ChangeLog b/urjtag/ChangeLog index f9a93180..2bf66970 100644 --- a/urjtag/ChangeLog +++ b/urjtag/ChangeLog @@ -1,3 +1,7 @@ +2009-06-04 Arnim Laeuger + + * src/bsdl/bsdl_flex.l: force Base = DECIMAL for BOUNDARY_LENGTH attribute + 2009-06-04 Rutger Hofman * src/tap/cable/*.c, src/tap/parport/*.c, src/tap/usbconn/*.c: return/handle diff --git a/urjtag/src/bsdl/bsdl_flex.l b/urjtag/src/bsdl/bsdl_flex.l index 4edbcfd0..48043076 100644 --- a/urjtag/src/bsdl/bsdl_flex.l +++ b/urjtag/src/bsdl/bsdl_flex.l @@ -291,7 +291,7 @@ ISC_Illegal_Exit ISC_ILLEGAL_EXIT {Instruction_Private} {return( INSTRUCTION_PRIVATE ); } {Register_Access} {BEGIN(REG); yyextra->Base = DECIMAL; return( REGISTER_ACCESS ); } -{Boundary_Length} {return( BOUNDARY_LENGTH ); } +{Boundary_Length} {yyextra->Base = DECIMAL; return( BOUNDARY_LENGTH ); } {Boundary_Register} {BEGIN(BOU); yyextra->Base = DECIMAL; return( BOUNDARY_REGISTER ); } {Idcode_Register} {yyextra->Base = BIN_X; return( IDCODE_REGISTER ); }