2012-04-14 22:35:50 +00:00
|
|
|
/*
|
|
|
|
* QEMU Motorola 68k CPU
|
|
|
|
*
|
|
|
|
* Copyright (c) 2012 SUSE LINUX Products GmbH
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see
|
|
|
|
* <http://www.gnu.org/licenses/lgpl-2.1.html>
|
|
|
|
*/
|
|
|
|
#ifndef QEMU_M68K_CPU_QOM_H
|
|
|
|
#define QEMU_M68K_CPU_QOM_H
|
|
|
|
|
2019-07-09 15:20:52 +00:00
|
|
|
#include "hw/core/cpu.h"
|
2020-09-03 20:43:22 +00:00
|
|
|
#include "qom/object.h"
|
2012-04-14 22:35:50 +00:00
|
|
|
|
|
|
|
#define TYPE_M68K_CPU "m68k-cpu"
|
|
|
|
|
2022-02-14 16:08:40 +00:00
|
|
|
OBJECT_DECLARE_CPU_TYPE(M68kCPU, M68kCPUClass, M68K_CPU)
|
2012-04-14 22:35:50 +00:00
|
|
|
|
2019-06-06 23:41:25 +00:00
|
|
|
/*
|
2012-04-14 22:35:50 +00:00
|
|
|
* M68kCPUClass:
|
2013-01-05 14:15:30 +00:00
|
|
|
* @parent_realize: The parent class' realize handler.
|
2022-11-24 11:50:11 +00:00
|
|
|
* @parent_phases: The parent class' reset phase handlers.
|
2012-04-14 22:35:50 +00:00
|
|
|
*
|
|
|
|
* A Motorola 68k CPU model.
|
|
|
|
*/
|
2020-09-03 20:43:22 +00:00
|
|
|
struct M68kCPUClass {
|
2012-04-14 22:35:50 +00:00
|
|
|
/*< private >*/
|
|
|
|
CPUClass parent_class;
|
|
|
|
/*< public >*/
|
|
|
|
|
2013-01-05 14:15:30 +00:00
|
|
|
DeviceRealize parent_realize;
|
2022-11-24 11:50:11 +00:00
|
|
|
ResettablePhases parent_phases;
|
2020-09-03 20:43:22 +00:00
|
|
|
};
|
2012-04-14 22:35:50 +00:00
|
|
|
|
2014-09-13 16:45:15 +00:00
|
|
|
|
2012-04-14 22:35:50 +00:00
|
|
|
#endif
|