minor update

This commit is contained in:
Blaise Tine 2024-03-14 12:57:02 -07:00
parent f1522e68f8
commit 100eb49201
2 changed files with 1 additions and 1 deletions

View file

@ -49,7 +49,7 @@ Emulator::warp_t::warp_t(const Arch& arch)
void Emulator::warp_t::clear(const Arch& arch, const DCRS &dcrs) {
this->PC = dcrs.base_dcrs.read(VX_DCR_BASE_STARTUP_ADDR0);
#if (XLEN == 64)
this->PC = (uint64_t(dcrs.base_dcrs.read(VX_DCR_BASE_STARTUP_ADDR1)) << 32) | PC_;
this->PC = (uint64_t(dcrs.base_dcrs.read(VX_DCR_BASE_STARTUP_ADDR1)) << 32) | this->PC;
#endif
this->tmask.reset();
for (uint32_t i = 0, n = arch.num_threads(); i < n; ++i) {

Binary file not shown.