mirror of
https://github.com/TomHarte/CLK.git
synced 2025-02-28 06:29:37 +00:00
Undid consciously discard for bits 3 and 5 in the FUSE tests. Back to 100 failures.
This commit is contained in:
parent
fba6ac2b4c
commit
87095b0578
@ -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 &&
|
||||
|
Loading…
x
Reference in New Issue
Block a user