diff --git a/Gaming/src/Gaming.vcxproj b/Gaming/src/Gaming.vcxproj
index c582528..a5eb6eb 100644
--- a/Gaming/src/Gaming.vcxproj
+++ b/Gaming/src/Gaming.vcxproj
@@ -91,12 +91,10 @@
NDEBUG;_LIB;%(PreprocessorDefinitions)
stdafx.h
stdcpp17
- Speed
- true
false
false
true
- AdvancedVectorExtensions2
+ AnySuitable
Windows
@@ -143,12 +141,10 @@
WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)
stdafx.h
stdcpp17
- Speed
- true
false
false
true
- AdvancedVectorExtensions2
+ AnySuitable
Windows
diff --git a/Intel8080/src/Intel8080.vcxproj b/Intel8080/src/Intel8080.vcxproj
index 2ad098e..ce7fada 100644
--- a/Intel8080/src/Intel8080.vcxproj
+++ b/Intel8080/src/Intel8080.vcxproj
@@ -114,13 +114,11 @@
Use
true
WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
true
false
stdcpp17
- true
false
- Speed
+ AnySuitable
Windows
@@ -134,13 +132,11 @@
Use
true
NDEBUG;_LIB;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
true
false
stdcpp17
- true
false
- Speed
+ AnySuitable
Windows
diff --git a/Intel8080/test/test_Intel8080.vcxproj b/Intel8080/test/test_Intel8080.vcxproj
index 62abbc6..f9016fb 100644
--- a/Intel8080/test/test_Intel8080.vcxproj
+++ b/Intel8080/test/test_Intel8080.vcxproj
@@ -117,13 +117,11 @@
Use
true
WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
true
false
stdcpp17
- true
false
- Speed
+ AnySuitable
Console
@@ -137,13 +135,11 @@
Use
true
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
true
false
stdcpp17
- true
false
- Speed
+ AnySuitable
Console
diff --git a/LR35902/fusetest_LR35902/fusetest_LR35902.vcxproj b/LR35902/fusetest_LR35902/fusetest_LR35902.vcxproj
index 28d80f5..1d52529 100644
--- a/LR35902/fusetest_LR35902/fusetest_LR35902.vcxproj
+++ b/LR35902/fusetest_LR35902/fusetest_LR35902.vcxproj
@@ -91,13 +91,11 @@
Use
true
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
stdcpp17
true
false
- true
false
- Speed
+ AnySuitable
Console
@@ -137,13 +135,11 @@
Use
true
WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
stdcpp17
true
false
- true
false
- Speed
+ AnySuitable
Console
diff --git a/LR35902/src/LR35902.vcxproj b/LR35902/src/LR35902.vcxproj
index c711663..18ca94b 100644
--- a/LR35902/src/LR35902.vcxproj
+++ b/LR35902/src/LR35902.vcxproj
@@ -112,13 +112,11 @@
Use
true
WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)
- AdvancedVectorExtensions2
true
false
stdcpp17
- true
false
- Speed
+ AnySuitable
Windows
@@ -132,13 +130,11 @@
Use
true
NDEBUG;_LIB;%(PreprocessorDefinitions)
- AdvancedVectorExtensions2
true
false
stdcpp17
- true
false
- Speed
+ AnySuitable
Windows
diff --git a/M6502/HarteTest_6502/HarteTest_6502.vcxproj b/M6502/HarteTest_6502/HarteTest_6502.vcxproj
index 564fb21..93577ab 100644
--- a/M6502/HarteTest_6502/HarteTest_6502.vcxproj
+++ b/M6502/HarteTest_6502/HarteTest_6502.vcxproj
@@ -109,12 +109,9 @@
WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
stdcpp17
Use
- Speed
- true
false
false
true
- AdvancedVectorExtensions2
AnySuitable
@@ -145,12 +142,9 @@
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
stdcpp17
Use
- Speed
- true
false
false
true
- AdvancedVectorExtensions2
AnySuitable
diff --git a/M6502/HarteTest_6502/tests.cpp b/M6502/HarteTest_6502/tests.cpp
index a6bdc08..c85593d 100644
--- a/M6502/HarteTest_6502/tests.cpp
+++ b/M6502/HarteTest_6502/tests.cpp
@@ -22,27 +22,27 @@ int main() {
const auto path = entry.path();
- std::cout << "Processing: " << path.filename() << "\n";
+ //std::cout << "Processing: " << path.filename() << "\n";
opcode_test_suite_t opcode(path.string());
opcode.load();
for (const auto opcode_test_element : opcode) {
const auto opcode_test = test_t(opcode_test_element);
- TestRunner runner(opcode_test);
- runner.check();
+ //TestRunner runner(opcode_test);
+ //runner.check();
- if (runner.invalid()) {
- ++invalid_opcode_count;
- if (runner.unimplemented())
- ++unimplemented_opcode_count;
- if (runner.undocumented())
- ++undocumented_opcode_count;
- std::cout << "** Failed: " << opcode_test.name() << "\n";
- for (const auto& message : runner.messages())
- std::cout << "**** " << message << "\n";
- break;
- }
+ //if (runner.invalid()) {
+ // ++invalid_opcode_count;
+ // if (runner.unimplemented())
+ // ++unimplemented_opcode_count;
+ // if (runner.undocumented())
+ // ++undocumented_opcode_count;
+ // std::cout << "** Failed: " << opcode_test.name() << "\n";
+ // for (const auto& message : runner.messages())
+ // std::cout << "**** " << message << "\n";
+ // break;
+ //}
}
}
diff --git a/M6502/src/M6502.vcxproj b/M6502/src/M6502.vcxproj
index 1eb7a13..f9887ee 100644
--- a/M6502/src/M6502.vcxproj
+++ b/M6502/src/M6502.vcxproj
@@ -87,13 +87,11 @@
Use
true
NDEBUG;_LIB;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
true
stdcpp17
false
- true
false
- Speed
+ AnySuitable
Windows
@@ -133,13 +131,11 @@
Use
true
WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
stdcpp17
true
false
- true
false
- Speed
+ AnySuitable
Windows
diff --git a/M6502/test/test_M6502.vcxproj b/M6502/test/test_M6502.vcxproj
index 23c7c38..590ea34 100644
--- a/M6502/test/test_M6502.vcxproj
+++ b/M6502/test/test_M6502.vcxproj
@@ -95,13 +95,11 @@
Use
true
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
true
false
stdcpp17
- true
false
- Speed
+ AnySuitable
Console
@@ -144,13 +142,11 @@
Use
true
WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
stdcpp17
true
false
- true
false
- Speed
+ AnySuitable
Console
diff --git a/M6532/src/M6532.vcxproj b/M6532/src/M6532.vcxproj
index 6bc1887..f21a8c9 100644
--- a/M6532/src/M6532.vcxproj
+++ b/M6532/src/M6532.vcxproj
@@ -91,13 +91,11 @@
Level3
true
NDEBUG;_LIB;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
false
stdcpp17
true
- true
false
- Speed
+ AnySuitable
Windows
@@ -140,13 +138,11 @@
Level3
true
WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
false
stdcpp17
true
- true
false
- Speed
+ AnySuitable
Windows
diff --git a/MC6809/src/MC6809.vcxproj b/MC6809/src/MC6809.vcxproj
index e67e296..520ebb8 100644
--- a/MC6809/src/MC6809.vcxproj
+++ b/MC6809/src/MC6809.vcxproj
@@ -109,13 +109,11 @@
Level3
true
NDEBUG;_LIB;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
true
false
stdcpp17
- true
false
- Speed
+ AnySuitable
Windows
@@ -158,13 +156,11 @@
Level3
true
WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)
- AdvancedVectorExtensions
true
false
stdcpp17
- true
false
- Speed
+ AnySuitable
Windows
diff --git a/MC6809/test/test_MC6809.vcxproj b/MC6809/test/test_MC6809.vcxproj
index ecb841f..0688398 100644
--- a/MC6809/test/test_MC6809.vcxproj
+++ b/MC6809/test/test_MC6809.vcxproj
@@ -92,12 +92,10 @@
true
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
stdcpp17
- AdvancedVectorExtensions
true
false
- true
false
- Speed
+ AnySuitable
Console
@@ -142,12 +140,10 @@
true
WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
stdcpp17
- AdvancedVectorExtensions
true
false
- true
false
- Speed
+ AnySuitable
Console
diff --git a/MC6809/unittest/unittest_MC6809.vcxproj b/MC6809/unittest/unittest_MC6809.vcxproj
index 1cc9d33..3d46b03 100644
--- a/MC6809/unittest/unittest_MC6809.vcxproj
+++ b/MC6809/unittest/unittest_MC6809.vcxproj
@@ -93,12 +93,10 @@
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
pch.h
stdcpp17
- AdvancedVectorExtensions
true
false
- true
false
- Speed
+ AnySuitable
Console
@@ -165,12 +163,10 @@
WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
pch.h
stdcpp17
- AdvancedVectorExtensions
true
false
- true
false
- Speed
+ AnySuitable
Console
diff --git a/MC6850/src/MC6850.vcxproj b/MC6850/src/MC6850.vcxproj
index 6f4dd37..55d49cd 100644
--- a/MC6850/src/MC6850.vcxproj
+++ b/MC6850/src/MC6850.vcxproj
@@ -93,12 +93,10 @@
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
pch.h
stdcpp17
- AdvancedVectorExtensions
true
false
- true
false
- Speed
+ AnySuitable
Console
@@ -145,12 +143,10 @@
WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
pch.h
stdcpp17
- AdvancedVectorExtensions
true
false
- true
false
- Speed
+ AnySuitable
Console
diff --git a/Ricoh2A03/src/Ricoh2A03.vcxproj b/Ricoh2A03/src/Ricoh2A03.vcxproj
index be47510..9eec345 100644
--- a/Ricoh2A03/src/Ricoh2A03.vcxproj
+++ b/Ricoh2A03/src/Ricoh2A03.vcxproj
@@ -86,12 +86,10 @@
true
Use
stdcpp17
- AdvancedVectorExtensions
true
false
- true
false
- Speed
+ AnySuitable
true
@@ -122,12 +120,10 @@
true
Use
stdcpp17
- AdvancedVectorExtensions
true
false
- true
false
- Speed
+ AnySuitable
true
diff --git a/Z80/fusetest_Z80/fusetest_Z80.vcxproj b/Z80/fusetest_Z80/fusetest_Z80.vcxproj
index d1bdbc9..ff6a277 100644
--- a/Z80/fusetest_Z80/fusetest_Z80.vcxproj
+++ b/Z80/fusetest_Z80/fusetest_Z80.vcxproj
@@ -93,12 +93,10 @@
true
NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
false
- AdvancedVectorExtensions
true
stdcpp17
- true
false
- Speed
+ AnySuitable
Console
@@ -139,12 +137,10 @@
true
WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)
false
- AdvancedVectorExtensions
true
stdcpp17
- true
false
- Speed
+ AnySuitable
Console
diff --git a/Z80/src/Z80.vcxproj b/Z80/src/Z80.vcxproj
index d55a86c..2849784 100644
--- a/Z80/src/Z80.vcxproj
+++ b/Z80/src/Z80.vcxproj
@@ -88,12 +88,10 @@
true
NDEBUG;_LIB;%(PreprocessorDefinitions)
false
- AdvancedVectorExtensions
true
stdcpp17
- true
false
- Speed
+ AnySuitable
Windows
@@ -134,12 +132,10 @@
true
WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)
false
- AdvancedVectorExtensions
true
stdcpp17
- true
false
- Speed
+ AnySuitable
Windows
diff --git a/Z80/test/test_Z80.vcxproj b/Z80/test/test_Z80.vcxproj
index ad4699b..c7f653e 100644
--- a/Z80/test/test_Z80.vcxproj
+++ b/Z80/test/test_Z80.vcxproj
@@ -85,12 +85,10 @@
true
NDEBUG;_LIB;%(PreprocessorDefinitions)
false
- AdvancedVectorExtensions
true
stdcpp17
- true
false
- Speed
+ AnySuitable
true
@@ -134,12 +132,10 @@
true
WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)
false
- AdvancedVectorExtensions
true
stdcpp17
- true
false
- Speed
+ AnySuitable
true
diff --git a/src/EightBit.vcxproj b/src/EightBit.vcxproj
index 07106e7..92cdf10 100644
--- a/src/EightBit.vcxproj
+++ b/src/EightBit.vcxproj
@@ -114,12 +114,10 @@
true
WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)
false
- AdvancedVectorExtensions
true
stdcpp17
- true
false
- Speed
+ AnySuitable
Windows
@@ -134,12 +132,10 @@
true
NDEBUG;_LIB;%(PreprocessorDefinitions)
false
- AdvancedVectorExtensions
true
stdcpp17
- true
false
- Speed
+ AnySuitable
Windows