remove more global constants
This commit is contained in:
parent
cf05b604b3
commit
b58214d7e3
@ -54,7 +54,7 @@ int main(int argc, char** argv)
|
|||||||
demand(fcntl(fromhost_fd,F_GETFD) >= 0, "fromhost file not open");
|
demand(fcntl(fromhost_fd,F_GETFD) >= 0, "fromhost file not open");
|
||||||
demand(fcntl(tohost_fd,F_GETFD) >= 0, "tohost file not open");
|
demand(fcntl(tohost_fd,F_GETFD) >= 0, "tohost file not open");
|
||||||
|
|
||||||
const size_t disasm_len = 24;
|
const int disasm_len = 24;
|
||||||
if (vcd)
|
if (vcd)
|
||||||
{
|
{
|
||||||
// Create a VCD file
|
// Create a VCD file
|
||||||
@ -157,7 +157,7 @@ int main(int argc, char** argv)
|
|||||||
{
|
{
|
||||||
wb_disasm.resize(disasm_len, ' ');
|
wb_disasm.resize(disasm_len, ' ');
|
||||||
dat_t<disasm_len*8> disasm_dat;
|
dat_t<disasm_len*8> disasm_dat;
|
||||||
for (size_t i = 0; i < disasm_len; i++)
|
for (int i = 0; i < disasm_len; i++)
|
||||||
disasm_dat = disasm_dat << 8 | LIT<8>(wb_disasm[i]);
|
disasm_dat = disasm_dat << 8 | LIT<8>(wb_disasm[i]);
|
||||||
|
|
||||||
tile.dump(vcdfile, trace_count);
|
tile.dump(vcdfile, trace_count);
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 7a225aac9ec81d59d6e161cd9ea554b00b0d0906
|
Subproject commit 238b637fb2bad9da4c935993dc937523fdf5938b
|
@ -210,7 +210,8 @@ class Top extends Component {
|
|||||||
val ic = ICacheConfig(128, 2, co)
|
val ic = ICacheConfig(128, 2, co)
|
||||||
val dc = DCacheConfig(128, 4, co,
|
val dc = DCacheConfig(128, 4, co,
|
||||||
nmshr = 2, nrpq = 16, nsdq = 17)
|
nmshr = 2, nrpq = 16, nsdq = 17)
|
||||||
val rc = RocketConfiguration(NTILES, co, ic, dc)
|
val rc = RocketConfiguration(NTILES, co, ic, dc,
|
||||||
|
fpu = true, vec = false)
|
||||||
val tile = new Tile(resetSignal = hl.reset)(rc)
|
val tile = new Tile(resetSignal = hl.reset)(rc)
|
||||||
|
|
||||||
tile.io.host.reset := Reg(Reg(hl.reset))
|
tile.io.host.reset := Reg(Reg(hl.reset))
|
||||||
|
Loading…
Reference in New Issue
Block a user