1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-07 08:28:57 +00:00

Undid consciously discard for bits 3 and 5 in the FUSE tests. Back to 100 failures.

This commit is contained in:
Thomas Harte 2017-06-04 14:04:26 -04:00
parent fba6ac2b4c
commit 87095b0578

View File

@ -121,7 +121,7 @@ fileprivate struct RegisterState {
extension RegisterState: Equatable {}
fileprivate func ==(lhs: RegisterState, rhs: RegisterState) -> Bool {
return (lhs.af & ~0x0028) == (rhs.af & ~0x0028) &&
return lhs.af == rhs.af &&
lhs.bc == rhs.bc &&
lhs.de == rhs.de &&
lhs.hl == rhs.hl &&