| 101 | |
| 102 | |
| 103 | void cCPUMemory::Insert(int pos, const Instruction& inst) |
| 104 | { |
| 105 | assert(pos >= 0); |
| 106 | assert(pos <= m_seq.GetSize()); |
| 107 | |
| 108 | prepareInsert(pos, 1); |
| 109 | m_seq[pos] = inst; |
| 110 | m_flag_array[pos] = 0; |
| 111 | } |
| 112 | |
| 113 | void cCPUMemory::Insert(int pos, const InstructionSequence& genome) |
| 114 | { |
no test coverage detected