force Base = DECIMAL for BOUNDARY_LENGTH attribute

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1643 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Arnim Läuger 16 years ago
parent 03b5d454ee
commit 99f3950ac4

@ -1,3 +1,7 @@
2009-06-04 Arnim Laeuger <arniml>
* src/bsdl/bsdl_flex.l: force Base = DECIMAL for BOUNDARY_LENGTH attribute
2009-05-26 Arnim Laeuger <arniml>
* src/bus/bf561_ezkit.c, src/bus/sharc21065l.c, src/bus/bf537_stamp.c,

@ -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 ); }

@ -1,3 +1,7 @@
2009-06-04 Arnim Laeuger <arniml>
* src/bsdl/bsdl_flex.l: force Base = DECIMAL for BOUNDARY_LENGTH attribute
2009-06-04 Rutger Hofman <rfhh>
* src/tap/cable/*.c, src/tap/parport/*.c, src/tap/usbconn/*.c: return/handle

@ -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 ); }

Loading…
Cancel
Save