| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
| |
instructions whose execution time is normally indefinite. When this happens, a special message may be printed to the debug console stating the location of the last actual instruction executed before the wait (if there was one).
Note that since the callback ignores the current value of the program counter, this special type of debugger break cannot be entered through breakpoints or instruction stepping commands. The callback also leaves no effect on PC history tracking or trace logs.
* cpu/hd61700, cpu/tms32031: Add standard IRQ callback
* cpu/m68000gen.py: Change name of invoked executable to bin/python3
* cpu/m6809: Eliminate PC "massaging" for SYNC and similar instructions
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
This appears to have accidentally regressed in bcd74f1e42234b8376a3b020684394b8f72111e5.
|
|
|
|
|
|
|
|
| |
Limited testing of these additions on 6800 code. The fdiv instruction
appears the only one remaining now.
Cleaned up some of the existing definitions to make the patterns more
consistent, and to make it easier to spot inconsistencies and errors.
|
|
|
|
|
| |
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
|
|
|