mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 21:39:10 -04:00
minor update
This commit is contained in:
parent
f1522e68f8
commit
100eb49201
2 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
BIN
sim/simx/simx
BIN
sim/simx/simx
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue