This version addresses all of what I understood to be required changes by Peter Maydell.
Again, I thank everybody who invested time into reviewing this. It's definitely in much better shape now. AG Anthony Green (4): Add moxie target code Add moxie disassembler Add sample moxie system Add top level changes for moxie MAINTAINERS | 5 + arch_init.c | 2 + configure | 12 +- cpu-exec.c | 2 + default-configs/moxie-softmmu.mak | 2 + disas.c | 6 + disas/Makefile.objs | 1 + disas/moxie.c | 360 +++++++++++++ hw/moxie/Makefile.objs | 6 + hw/moxie/moxiesim.c | 175 +++++++ include/disas/bfd.h | 66 +-- include/sysemu/arch_init.h | 1 + qapi-schema.json | 6 +- target-moxie/Makefile.objs | 2 + target-moxie/cpu.c | 174 +++++++ target-moxie/cpu.h | 169 ++++++ target-moxie/helper.c | 100 ++++ target-moxie/helper.h | 6 + target-moxie/machine.c | 27 + target-moxie/mmu.c | 37 ++ target-moxie/mmu.h | 19 + target-moxie/op_helper.c | 64 +++ target-moxie/translate.c | 1019 +++++++++++++++++++++++++++++++++++++ 23 files changed, 2225 insertions(+), 36 deletions(-) create mode 100644 default-configs/moxie-softmmu.mak create mode 100644 disas/moxie.c create mode 100644 hw/moxie/Makefile.objs create mode 100644 hw/moxie/moxiesim.c create mode 100644 target-moxie/Makefile.objs create mode 100644 target-moxie/cpu.c create mode 100644 target-moxie/cpu.h create mode 100644 target-moxie/helper.c create mode 100644 target-moxie/helper.h create mode 100644 target-moxie/machine.c create mode 100644 target-moxie/mmu.c create mode 100644 target-moxie/mmu.h create mode 100644 target-moxie/op_helper.c create mode 100644 target-moxie/translate.c -- 1.8.1.2