diff -c 65816-2.0/address.c 65816-2.0-2/address.c
*** 65816-2.0/address.c	Tue Mar  8 17:33:11 1994
--- 65816-2.0-2/address.c	Sat Jun 22 19:45:19 2002
***************
*** 182,189 ****
  	}
          else if(loc!=35){
            if(theLine->addrend>value) {
!             if((value-theLine->addrend)<(-128)) {
!                 printf("\nerror: attempt to branch less that 128 away");        
                  return(1);
              }
  	    branch=theLine->addrend-value;
--- 182,189 ----
  	}
          else if(loc!=35){
            if(theLine->addrend>value) {
!             if((theLine->addrend-value)<128) {
!                 printf("\nerror: attempt to branch less that 128 away");
                  return(1);
              }
  	    branch=theLine->addrend-value;
***************
*** 208,214 ****
          }
  	else {
            if(theLine->addrend>value) {
!             if((value-theLine->addrend)<(-32768)) {
                  printf("\nerror: attempt to branch less that 32768 away");
                  return(1);
              }
--- 208,214 ----
          }
  	else {
            if(theLine->addrend>value) {
!             if((theLine->addrend-value)<32768) {
                  printf("\nerror: attempt to branch less that 32768 away");
                  return(1);
              }
diff -c 65816-2.0/parser.c 65816-2.0-2/parser.c
*** 65816-2.0/parser.c	Tue Mar  8 17:23:27 1994
--- 65816-2.0-2/parser.c	Sat Jun 22 19:59:09 2002
***************
*** 46,52 ****
  	options *opts=(options *)malloc(sizeof(options));
  	if(!opts) memory_error();
  
! 	printf("65816 Cross Assembler v2.0 (c)1994 Jeremy Gordon\n");
  	printf("please send bugfixes to jgordon@animator.slip.umd.edu\n");
  #ifdef AMIGA
  	printf("Amiga compilation by JackRipper/SBT <vic@escape.com>\n");
--- 46,52 ----
  	options *opts=(options *)malloc(sizeof(options));
  	if(!opts) memory_error();
  
! 	printf("65816 Cross Assembler v2.0-2 (c)1994 Jeremy Gordon\n");
  	printf("please send bugfixes to jgordon@animator.slip.umd.edu\n");
  #ifdef AMIGA
  	printf("Amiga compilation by JackRipper/SBT <vic@escape.com>\n");
