Remove unused function parity8 in cpu_haxm.cpp

This commit is contained in:
StrikerX3 2019-01-24 21:15:16 -02:00
parent a1637d3bbb
commit 1c11f9d847

View file

@ -6,14 +6,6 @@
namespace vixen {
namespace cpu {
static bool parity8(uint8_t x) {
uint8_t y = x ^ (x >> 1);
y = y ^ (y >> 2);
y = y ^ (y >> 4);
return (y & 1) == 0;
}
HaxmCpu::HaxmCpu() {
m_haxm = nullptr;
m_vm = nullptr;