()
| 156 | } |
| 157 | |
| 158 | final public void deactivate() { |
| 159 | if (cpu != null) { |
| 160 | cpu.suspend(); |
| 161 | } |
| 162 | if (motherboard != null) { |
| 163 | motherboard.suspend(); |
| 164 | } |
| 165 | if (video != null) { |
| 166 | video.suspend(); |
| 167 | } |
| 168 | if (mixer != null) { |
| 169 | mixer.detach(); |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | /** |
| 174 | * If the user wants a full reset, use the coldStart method. |