Remove redundant CPU check and data.h / .cpp.
This commit is contained in:
parent
e80fee86c5
commit
620fa10454
5 changed files with 0 additions and 27 deletions
|
@ -53,7 +53,6 @@ set(SOURCE_FILES
|
||||||
linux/windows/dmusicc.cpp
|
linux/windows/dmusicc.cpp
|
||||||
linux/windows/winnls.cpp
|
linux/windows/winnls.cpp
|
||||||
|
|
||||||
linux/data.cpp
|
|
||||||
linux/benchmark.cpp
|
linux/benchmark.cpp
|
||||||
linux/paddle.cpp
|
linux/paddle.cpp
|
||||||
linux/version.cpp
|
linux/version.cpp
|
||||||
|
@ -137,7 +136,6 @@ set(HEADER_FILES
|
||||||
linux/windows/mmsystem.h
|
linux/windows/mmsystem.h
|
||||||
|
|
||||||
linux/interface.h
|
linux/interface.h
|
||||||
linux/data.h
|
|
||||||
linux/benchmark.h
|
linux/benchmark.h
|
||||||
linux/paddle.h
|
linux/paddle.h
|
||||||
linux/version.h
|
linux/version.h
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#include "frontends/common2/utils.h"
|
#include "frontends/common2/utils.h"
|
||||||
|
|
||||||
#include "linux/data.h"
|
|
||||||
#include "linux/interface.h"
|
#include "linux/interface.h"
|
||||||
|
|
||||||
#include "StdAfx.h"
|
#include "StdAfx.h"
|
||||||
|
@ -72,7 +71,6 @@ void initialiseEmulator()
|
||||||
|
|
||||||
LoadConfiguration();
|
LoadConfiguration();
|
||||||
SetCurrentCLK6502();
|
SetCurrentCLK6502();
|
||||||
CheckCpu();
|
|
||||||
GetAppleWindowTitle();
|
GetAppleWindowTitle();
|
||||||
GetFrame().FrameRefreshStatus(DRAW_LEDS | DRAW_BUTTON_DRIVES | DRAW_DISK_STATUS);
|
GetFrame().FrameRefreshStatus(DRAW_LEDS | DRAW_BUTTON_DRIVES | DRAW_DISK_STATUS);
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
#include "RGBMonitor.h"
|
#include "RGBMonitor.h"
|
||||||
#include "Utilities.h"
|
#include "Utilities.h"
|
||||||
|
|
||||||
#include "linux/data.h"
|
|
||||||
#include "linux/benchmark.h"
|
#include "linux/benchmark.h"
|
||||||
#include "linux/version.h"
|
#include "linux/version.h"
|
||||||
#include "linux/paddle.h"
|
#include "linux/paddle.h"
|
||||||
|
@ -79,8 +78,6 @@ namespace
|
||||||
{
|
{
|
||||||
LoadConfiguration();
|
LoadConfiguration();
|
||||||
|
|
||||||
CheckCpu();
|
|
||||||
|
|
||||||
// ResetDefaultMachineMemTypes();
|
// ResetDefaultMachineMemTypes();
|
||||||
|
|
||||||
switch (options.slot0Card) {
|
switch (options.slot0Card) {
|
||||||
|
|
|
@ -1,17 +0,0 @@
|
||||||
#include "StdAfx.h"
|
|
||||||
#include "Common.h"
|
|
||||||
|
|
||||||
#include "Log.h"
|
|
||||||
#include "CPU.h"
|
|
||||||
#include "Core.h"
|
|
||||||
|
|
||||||
void CheckCpu()
|
|
||||||
{
|
|
||||||
const eApple2Type apple2Type = GetApple2Type();
|
|
||||||
const eCpuType defaultCpu = ProbeMainCpuDefault(apple2Type);
|
|
||||||
const eCpuType mainCpu = GetMainCpu();
|
|
||||||
if (mainCpu != defaultCpu)
|
|
||||||
{
|
|
||||||
LogFileOutput("Detected non standard CPU for Apple2 = %d: default = %d, actual = %d\n", apple2Type, defaultCpu, mainCpu);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
#pragma once
|
|
||||||
|
|
||||||
void CheckCpu();
|
|
Loading…
Add table
Reference in a new issue