()
| 57 | } |
| 58 | |
| 59 | public static void abort() { |
| 60 | if (instance != null) { |
| 61 | if (instance.computer != null) { |
| 62 | instance.computer.getMotherboard().suspend(); |
| 63 | instance.computer.getMotherboard().detach(); |
| 64 | } |
| 65 | } |
| 66 | instance = null; |
| 67 | } |
| 68 | |
| 69 | public static Emulator getInstance() { |
| 70 | if (instance == null) { |
nothing calls this directly
no test coverage detected