cpu.c (48c1a3e303b5a2cca48679645ad3fbb914db741a) cpu.c (e124536f37377cff5d68925d4976ad604d0ebf3a)
1/*
2 * QEMU Motorola 68k CPU
3 *
4 * Copyright (c) 2012 SUSE LINUX Products GmbH
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either

--- 457 unchanged lines hidden (view full) ---

466 cc->class_by_name = m68k_cpu_class_by_name;
467 cc->has_work = m68k_cpu_has_work;
468 cc->do_interrupt = m68k_cpu_do_interrupt;
469 cc->tcg_ops.cpu_exec_interrupt = m68k_cpu_exec_interrupt;
470 cc->dump_state = m68k_cpu_dump_state;
471 cc->set_pc = m68k_cpu_set_pc;
472 cc->gdb_read_register = m68k_cpu_gdb_read_register;
473 cc->gdb_write_register = m68k_cpu_gdb_write_register;
1/*
2 * QEMU Motorola 68k CPU
3 *
4 * Copyright (c) 2012 SUSE LINUX Products GmbH
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either

--- 457 unchanged lines hidden (view full) ---

466 cc->class_by_name = m68k_cpu_class_by_name;
467 cc->has_work = m68k_cpu_has_work;
468 cc->do_interrupt = m68k_cpu_do_interrupt;
469 cc->tcg_ops.cpu_exec_interrupt = m68k_cpu_exec_interrupt;
470 cc->dump_state = m68k_cpu_dump_state;
471 cc->set_pc = m68k_cpu_set_pc;
472 cc->gdb_read_register = m68k_cpu_gdb_read_register;
473 cc->gdb_write_register = m68k_cpu_gdb_write_register;
474 cc->tlb_fill = m68k_cpu_tlb_fill;
474 cc->tcg_ops.tlb_fill = m68k_cpu_tlb_fill;
475#if defined(CONFIG_SOFTMMU)
476 cc->do_transaction_failed = m68k_cpu_transaction_failed;
477 cc->get_phys_page_debug = m68k_cpu_get_phys_page_debug;
478 dc->vmsd = &vmstate_m68k_cpu;
479#endif
480 cc->disas_set_info = m68k_cpu_disas_set_info;
481 cc->tcg_ops.initialize = m68k_tcg_init;
482

--- 55 unchanged lines hidden ---
475#if defined(CONFIG_SOFTMMU)
476 cc->do_transaction_failed = m68k_cpu_transaction_failed;
477 cc->get_phys_page_debug = m68k_cpu_get_phys_page_debug;
478 dc->vmsd = &vmstate_m68k_cpu;
479#endif
480 cc->disas_set_info = m68k_cpu_disas_set_info;
481 cc->tcg_ops.initialize = m68k_tcg_init;
482

--- 55 unchanged lines hidden ---