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/id.cc | |
| parent | 1250c3765f59801d060152d5f6eed0a9faa11b50 (diff) | |
Quick fix to fix compile-error
Diffstat (limited to 'src/sim/id.cc')
| -rw-r--r-- | src/sim/id.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sim/id.cc b/src/sim/id.cc index e18ef14..da7b55c 100644 --- a/src/sim/id.cc +++ b/src/sim/id.cc @@ -22,7 +22,8 @@ Response ID::advance(InstrDTO &next_instr, Response p) n = (p != OK || this->status != OK) ? BLOCKED : OK; // the power of consent - n = this->next->advance(curr_instr, n); + n = this->next->advance(*curr_instr, n); + return this->status; } void ID::get_instr_fields( |
