cpu.c (48c1a3e303b5a2cca48679645ad3fbb914db741a) | cpu.c (e124536f37377cff5d68925d4976ad604d0ebf3a) |
---|---|
1/* 2 * QEMU RX CPU 3 * 4 * Copyright (c) 2019 Yoshinori Sato 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms and conditions of the GNU General Public License, 8 * version 2 or later, as published by the Free Software Foundation. --- 182 unchanged lines hidden (view full) --- 191 cc->dump_state = rx_cpu_dump_state; 192 cc->set_pc = rx_cpu_set_pc; 193 cc->tcg_ops.synchronize_from_tb = rx_cpu_synchronize_from_tb; 194 cc->gdb_read_register = rx_cpu_gdb_read_register; 195 cc->gdb_write_register = rx_cpu_gdb_write_register; 196 cc->get_phys_page_debug = rx_cpu_get_phys_page_debug; 197 cc->disas_set_info = rx_cpu_disas_set_info; 198 cc->tcg_ops.initialize = rx_translate_init; | 1/* 2 * QEMU RX CPU 3 * 4 * Copyright (c) 2019 Yoshinori Sato 5 * 6 * This program is free software; you can redistribute it and/or modify it 7 * under the terms and conditions of the GNU General Public License, 8 * version 2 or later, as published by the Free Software Foundation. --- 182 unchanged lines hidden (view full) --- 191 cc->dump_state = rx_cpu_dump_state; 192 cc->set_pc = rx_cpu_set_pc; 193 cc->tcg_ops.synchronize_from_tb = rx_cpu_synchronize_from_tb; 194 cc->gdb_read_register = rx_cpu_gdb_read_register; 195 cc->gdb_write_register = rx_cpu_gdb_write_register; 196 cc->get_phys_page_debug = rx_cpu_get_phys_page_debug; 197 cc->disas_set_info = rx_cpu_disas_set_info; 198 cc->tcg_ops.initialize = rx_translate_init; |
199 cc->tlb_fill = rx_cpu_tlb_fill; | 199 cc->tcg_ops.tlb_fill = rx_cpu_tlb_fill; |
200 201 cc->gdb_num_core_regs = 26; 202 cc->gdb_core_xml_file = "rx-core.xml"; 203} 204 205static const TypeInfo rx_cpu_info = { 206 .name = TYPE_RX_CPU, 207 .parent = TYPE_CPU, --- 19 unchanged lines hidden --- | 200 201 cc->gdb_num_core_regs = 26; 202 cc->gdb_core_xml_file = "rx-core.xml"; 203} 204 205static const TypeInfo rx_cpu_info = { 206 .name = TYPE_RX_CPU, 207 .parent = TYPE_CPU, --- 19 unchanged lines hidden --- |