Browse Source

Update the openrisc previous program counter (ppc) when running code in the cgen based simulator.

* or1kcommon.cpu: Add pc set semantics to also update ppc.
gdb-8.0-branch
Stafford Horne 10 years ago
committed by Nick Clifton
parent
commit
4ea0266c22
  1. 4
      cpu/ChangeLog
  2. 5
      cpu/or1kcommon.cpu

4
cpu/ChangeLog

@ -1,3 +1,7 @@
2017-03-15 Stafford Horne <shorne@gmail.com>
* or1kcommon.cpu: Add pc set semantics to also update ppc.
2016-10-06 Alan Modra <amodra@gmail.com>
* mep.opc (expand_string): Add fall through comment.

5
cpu/or1kcommon.cpu

@ -26,6 +26,11 @@
(comment "program counter")
(attrs PC (MACH ORBIS-MACHS))
(type pc UWI)
(get () (raw-reg h-pc))
(set (newval) (sequence ()
(set (reg h-sys-ppc) (raw-reg h-pc))
(set (raw-reg h-pc) newval)
))
)
(define-pmacro REG-INDICES

Loading…
Cancel
Save