()
| 231 | } |
| 232 | |
| 233 | public String getWriteConfiguration() { |
| 234 | String wstate = ""; |
| 235 | if (SoftSwitches.RAMWRT.getState()) { |
| 236 | wstate += "Wa"; |
| 237 | } else { |
| 238 | wstate += "W0"; |
| 239 | } |
| 240 | String LCW = "L0W"; |
| 241 | if (SoftSwitches.LCWRITE.isOn()) { |
| 242 | if (SoftSwitches.AUXZP.isOff()) { |
| 243 | LCW = "L1W"; |
| 244 | if (SoftSwitches.LCBANK1.isOff()) { |
| 245 | LCW = "L2W"; |
| 246 | } |
| 247 | } else { |
| 248 | LCW = "L1aW"; |
| 249 | if (SoftSwitches.LCBANK1.isOff()) { |
| 250 | LCW = "L2aW"; |
| 251 | } |
| 252 | } |
| 253 | } |
| 254 | wstate += LCW; |
| 255 | return wstate; |
| 256 | } |
| 257 | |
| 258 | public String getAuxZPConfiguration() { |
| 259 | String astate = ""; |
no test coverage detected