cpu.c (48c1a3e303b5a2cca48679645ad3fbb914db741a) cpu.c (e124536f37377cff5d68925d4976ad604d0ebf3a)
1/*
2 * QEMU AVR CPU
3 *
4 * Copyright (c) 2019-2020 Michael Rolnik
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

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

199
200 cc->has_work = avr_cpu_has_work;
201 cc->do_interrupt = avr_cpu_do_interrupt;
202 cc->tcg_ops.cpu_exec_interrupt = avr_cpu_exec_interrupt;
203 cc->dump_state = avr_cpu_dump_state;
204 cc->set_pc = avr_cpu_set_pc;
205 cc->memory_rw_debug = avr_cpu_memory_rw_debug;
206 cc->get_phys_page_debug = avr_cpu_get_phys_page_debug;
1/*
2 * QEMU AVR CPU
3 *
4 * Copyright (c) 2019-2020 Michael Rolnik
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

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

199
200 cc->has_work = avr_cpu_has_work;
201 cc->do_interrupt = avr_cpu_do_interrupt;
202 cc->tcg_ops.cpu_exec_interrupt = avr_cpu_exec_interrupt;
203 cc->dump_state = avr_cpu_dump_state;
204 cc->set_pc = avr_cpu_set_pc;
205 cc->memory_rw_debug = avr_cpu_memory_rw_debug;
206 cc->get_phys_page_debug = avr_cpu_get_phys_page_debug;
207 cc->tlb_fill = avr_cpu_tlb_fill;
207 cc->tcg_ops.tlb_fill = avr_cpu_tlb_fill;
208 cc->vmsd = &vms_avr_cpu;
209 cc->disas_set_info = avr_cpu_disas_set_info;
210 cc->tcg_ops.initialize = avr_cpu_tcg_init;
211 cc->tcg_ops.synchronize_from_tb = avr_cpu_synchronize_from_tb;
212 cc->gdb_read_register = avr_cpu_gdb_read_register;
213 cc->gdb_write_register = avr_cpu_gdb_write_register;
214 cc->gdb_num_core_regs = 35;
215 cc->gdb_core_xml_file = "avr-cpu.xml";

--- 152 unchanged lines hidden ---
208 cc->vmsd = &vms_avr_cpu;
209 cc->disas_set_info = avr_cpu_disas_set_info;
210 cc->tcg_ops.initialize = avr_cpu_tcg_init;
211 cc->tcg_ops.synchronize_from_tb = avr_cpu_synchronize_from_tb;
212 cc->gdb_read_register = avr_cpu_gdb_read_register;
213 cc->gdb_write_register = avr_cpu_gdb_write_register;
214 cc->gdb_num_core_regs = 35;
215 cc->gdb_core_xml_file = "avr-cpu.xml";

--- 152 unchanged lines hidden ---