diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-05-22 21:50:20 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-05-22 21:50:20 +0000 |
commit | ea4e754f5a3c44d82ae7a09daad97e67c4b956a0 (patch) | |
tree | 4e10a777f4232b248200e990e94e0a99ad20a156 /target-ppc/op.c | |
parent | cae41b10a4c7bd76e582bd9ed7fc9480b72c9709 (diff) | |
download | qemu-ea4e754f5a3c44d82ae7a09daad97e67c4b956a0.tar.gz qemu-ea4e754f5a3c44d82ae7a09daad97e67c4b956a0.tar.bz2 qemu-ea4e754f5a3c44d82ae7a09daad97e67c4b956a0.zip |
PPC Breakpoints for gdb-stub (Jason Wessel)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1933 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-ppc/op.c')
-rw-r--r-- | target-ppc/op.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-ppc/op.c b/target-ppc/op.c index 4b0af5587c..ca1dbc5eb4 100644 --- a/target-ppc/op.c +++ b/target-ppc/op.c @@ -204,6 +204,11 @@ PPC_OP(update_nip) env->nip = PARAM(1); } +PPC_OP(debug) +{ + do_raise_exception(EXCP_DEBUG); +} + /* Segment registers load and store with immediate index */ PPC_OP(load_srin) { |