diff options
author | bd <bdunahu@operationnull.com> | 2025-03-29 23:31:49 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-29 23:31:49 -0400 |
commit | 593dc80637bd95e2ca458915295ee2cbea2a4696 (patch) | |
tree | 9e8f2e4b0f78159defadbaffdb7454d2ebdc14e1 /src/sim/if.cc | |
parent | 1250c3765f59801d060152d5f6eed0a9faa11b50 (diff) |
Quick fix to fix compile-error
Diffstat (limited to 'src/sim/if.cc')
-rw-r--r-- | src/sim/if.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/if.cc b/src/sim/if.cc index 7d3291b..3d53ad3 100644 --- a/src/sim/if.cc +++ b/src/sim/if.cc @@ -28,7 +28,7 @@ void IF::advance_helper() r = this->storage->read_word(this->id, this->pc, bits); if (r == OK) { this->status = r; - this->curr_instr = std::make_unique<InstrDTO>(); + this->curr_instr = new InstrDTO(); this->curr_instr->set_instr_bits(bits); } else this->status = STALLED; |