| 125 | } |
| 126 | |
| 127 | static uint8 ReadZapperVS(int w) |
| 128 | { |
| 129 | uint8 ret=0; |
| 130 | |
| 131 | if(ZD[w].zap_readbit==4) ret=1; |
| 132 | |
| 133 | if(ZD[w].zap_readbit==7) |
| 134 | { |
| 135 | if(ZD[w].bogo) |
| 136 | ret|=0x1; |
| 137 | } |
| 138 | if(ZD[w].zap_readbit==6) |
| 139 | { |
| 140 | if(!CheckColor(w)) |
| 141 | ret|=0x1; |
| 142 | } |
| 143 | if(!fceuindbg) |
| 144 | ZD[w].zap_readbit++; |
| 145 | return ret; |
| 146 | } |
| 147 | |
| 148 | static void StrobeZapperVS(int w) |
| 149 | { |
nothing calls this directly
no test coverage detected