diff options
Diffstat (limited to 'tests/simple_fat_bfly')
| -rw-r--r-- | tests/simple_fat_bfly/sim.c | 8 | ||||
| -rw-r--r-- | tests/simple_fat_bfly/test.c | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/tests/simple_fat_bfly/sim.c b/tests/simple_fat_bfly/sim.c index 7d7b166..98aa359 100644 --- a/tests/simple_fat_bfly/sim.c +++ b/tests/simple_fat_bfly/sim.c @@ -23,11 +23,13 @@ static stat build_ideal_noc(struct clock_domain *clk, uint32_t x) struct component *imem = create_simple_mem(4096); init_simple_mem(imem, 0, - build_tests_simple_fat_bfly_test_bin_len, - build_tests_simple_fat_bfly_test_bin); + build_tests_simple_fat_bfly_test_bin_len, + build_tests_simple_fat_bfly_test_bin); uint64_t rcv = fat_bfly_addr(i, 0); - struct component *rv64 = create_simple_riscv64(rcv, 0, imem, noc); + struct component *rv64 = create_simple_riscv64(rcv, 0, + imem, noc); + simple_riscv64_set_reg(rv64, 10, i); /* a0 */ simple_riscv64_set_reg(rv64, 11, x); /* a1 */ diff --git a/tests/simple_fat_bfly/test.c b/tests/simple_fat_bfly/test.c index 2e4a22c..aaf86c7 100644 --- a/tests/simple_fat_bfly/test.c +++ b/tests/simple_fat_bfly/test.c @@ -45,7 +45,7 @@ do_work: *control = x + 1; if (x == X - 1) - asm("ebreak"); + asm ("ebreak"); /* otherwise just loop */ while (1) {} |
