diff options
author | Jia Liu <proljc@gmail.com> | 2012-07-20 15:50:42 +0800 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-07-27 21:12:58 +0000 |
commit | 1d7d4034690a4dd292b214a788298a2cacd09fb2 (patch) | |
tree | 38c8069c4d421fb10161499c56dfbe57aede215b /target-openrisc/Makefile.objs | |
parent | b6a71ef7e01bcac7aeb47d8de4082704fbc6479c (diff) | |
download | qemu-1d7d4034690a4dd292b214a788298a2cacd09fb2.tar.gz qemu-1d7d4034690a4dd292b214a788298a2cacd09fb2.tar.bz2 qemu-1d7d4034690a4dd292b214a788298a2cacd09fb2.zip |
target-or32: Add exception support
Add OpenRISC exception support.
Signed-off-by: Jia Liu <proljc@gmail.com>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-openrisc/Makefile.objs')
-rw-r--r-- | target-openrisc/Makefile.objs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target-openrisc/Makefile.objs b/target-openrisc/Makefile.objs index 74c4b8d3c9..52d0158c61 100644 --- a/target-openrisc/Makefile.objs +++ b/target-openrisc/Makefile.objs @@ -1,3 +1,3 @@ obj-$(CONFIG_SOFTMMU) += machine.o -obj-y += cpu.o interrupt.o mmu.o translate.o -obj-y += interrupt_helper.o mmu_helper.o +obj-y += cpu.o exception.o interrupt.o mmu.o translate.o +obj-y += exception_helper.o interrupt_helper.o mmu_helper.o |