mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-12-20 18:05:57 +00:00
Test for ORG directive (#228)
This commit is contained in:
@@ -192,7 +192,7 @@ public class Memory implements Target, MongoSerializable, Cloneable {
|
||||
public Memory clone() {
|
||||
Memory memory = new Memory(words.length);
|
||||
memory.words = new char[words.length];
|
||||
System.arraycopy(memory.words, 0, words, 0, words.length);
|
||||
System.arraycopy(words, 0, memory.words, 0, words.length);
|
||||
return memory;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user