Error Code:

	L0001 = 0x0001

		.area	CODE1	(ABS)
		.org	0x0000

		jmp	L0001

	;.end


as6811 assembler error:
	<a> machine specific addressing or addressing mode error


FIX:
  There is an error in the 'm11mch.c' machine specific file.  The
  direct addressing mode is not processed in the JMP code of section
  'S_TYPE5'.  The corrected code follows:

	
	case S_TYP5:
		t1 = addr(&e1);
		if (t1 == S_INDX || t1 == S_INDY) {
			if (t1 == S_INDY)
				outab(PAGE2);
			outab(op);
			outrb(&e1, R_USGN);
			break;
		}
		if ((t1 == S_DIR) || (t1 == S_EXT)) {
			outab(op|0x10);
			outrw(&e1, 0);
			break;
		}
		aerr();
		break;


An updated copy of 'm11mch.c' is included.
A recompiled 'as6811.exe' (Symantec) is included.


