OpenCores
URL https://opencores.org/ocsvn/adv_debug_sys/adv_debug_sys/trunk

Subversion Repositories adv_debug_sys

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /adv_debug_sys/trunk/Software/AdvancedWatchpointControl
    from Rev 54 to Rev 56
    Reverse comparison

Rev 54 → Rev 56

/AdvancedWatchpointControl.jar Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
/doc/AdvancedWatchpointControl.pdf Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
/doc/src/AdvancedWatchpointControl.odt Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
/src/advancedWatchpointControl/registerInterpreter.java
134,9 → 134,10
}
val = val << 5;
long mask = 7 << 5;
long tmp = registers.getDCR(whichWP) & (~mask);
long tmp = registers.getDCR(whichWP);
tmp &= (~mask);
tmp |= val;
registers.setDCR(whichWP, val);
registers.setDCR(whichWP, tmp);
}
public compareType getWPCompareType(int whichWP) {
250,7 → 251,7
long mask = 3 << (2*whichWP);
long tmp = registers.getDMR1() & (~mask);
tmp |= val;
registers.setDMR1(val);
registers.setDMR1(tmp);
}
public int getWPCounterAssign(int whichWP) {

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.