(Object o)
| 79 | } |
| 80 | |
| 81 | @Override |
| 82 | public boolean equals(Object o) { |
| 83 | if (o instanceof MemoryCell) { |
| 84 | MemoryCell om = (MemoryCell) o; |
| 85 | return address == om.address || (x == om.x && y == om.y); |
| 86 | } |
| 87 | return false; |
| 88 | } |
| 89 | |
| 90 | public boolean hasCounts() { |
| 91 | return hasCount.get(); |