room.powerOn();
// Keep logging info about clocks speeds achieved
(new Thread() { @Override public void run() {
while(true) {
System.out.println(room.currentConsole().mainClock() + ", " + room.screen().monitor().clock + ", " + room.speaker().clock);
try { Thread.sleep(1000); } catch (InterruptedException e) {}
}
}}).start();
}