Changeset 5bb8e45 in mainline for generic


Ignore:
Timestamp:
2005-12-13T01:38:50Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5a95b25
Parents:
c52ed6b
Message:

Added support for mips breakpoints.
We have a kind of kernel debugger :-)
Breakpoints on JMP/Branch instructions are not supported and
they are reported after the breakpoint is fired and exited as
a BranchDelay exception. If we found a way, how to detect these
instructions, we would be able to support them as 'one-time' breakpoints.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/console/kconsole.c

    rc52ed6b r5bb8e45  
    431431       
    432432        /* If we get a name, try to find it in symbol table */
    433         if (text[0] < '0' | text[0] > '9') {
     433        if (text[0] < '0' || text[0] > '9') {
    434434                if (text[0] == '&') {
    435435                        isaddr = true;
Note: See TracChangeset for help on using the changeset viewer.