Browse Source

[sim] change default hwvl

cs250
Yunsup Lee 15 years ago
parent
commit
93f1d11a4f
  1. 6
      riscv/processor.cc

6
riscv/processor.cc

@ -37,11 +37,11 @@ processor_t::processor_t(sim_t* _sim, char* _mem, size_t _memsz)
vecbanks = 0xff;
vecbanks_count = 8;
utidx = -1;
vlmax = 8;
vlmax = 32;
vl = 0;
nxfpr_bank = 256;
nxpr_use = 0;
nfpr_use = 0;
nxpr_use = 32;
nfpr_use = 32;
for (int i=0; i<MAX_UTS; i++)
uts[i] = NULL;

Loading…
Cancel
Save