}
public void disableAccessWatchPoint(int address, int length) throws CPUException
{
if (!accessWatchPoint)
{
throw new HardwareWatchPointException();
}
if ((address!=accessWatchPointAddress)||(length!=accessWatchPointLength))
{
throw new HardwareWatchPointException();
}
accessWatchPoint=false;
}