--- nono/m680x0/testea.cpp 2026/04/29 17:05:40 1.1.1.5 +++ nono/m680x0/testea.cpp 2026/04/29 17:05:48 1.1.1.6 @@ -5,11 +5,15 @@ // #include "mpu680x0.h" +#define M680X0_CYCLE_TABLE +#include "m680x0cycle.h" class MPU680x0Test : public MPU680x0Device { public: - MPU680x0Test() { } + MPU680x0Test() { + cycle_table = cycle_table_030cc; + } ~MPU680x0Test() override { } void test_ea_ix(); void test_ea_ix2(); @@ -87,8 +91,6 @@ MainMPUDevice::MainMPUDevice() : inherit MainMPUDevice::~MainMPUDevice() { } MPU680x0Device::MPU680x0Device() { } MPU680x0Device::~MPU680x0Device() { } -Event::Event(Device *) { } -Event::~Event() { } BranchHistory::BranchHistory(uint) : inherited(0) { } BranchHistory::~BranchHistory() { } BranchHistory_m680x0::BranchHistory_m680x0(uint) : inherited(0) { } @@ -100,7 +102,6 @@ bool Device::Create() { return true; } bool Device::Create2() { return true; } bool Device::Init() { return true; } void Device::ResetHard(bool) { } -bool Device::Apply() { return true; } void Device::PowerOff() { } bool MPUDevice::Init() { return true; } void MPUDevice::PowerOff() { }