We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e4c14c commit 912e62eCopy full SHA for 912e62e
src/emulate.c
@@ -512,6 +512,7 @@ static bool do_fuse5(riscv_t *rv,
512
uint64_t cycle,
513
uint32_t PC)
514
{
515
+ /* FIXME: specify the correct cycle count for memset routine */
516
cycle += 2;
517
memory_t *m = ((state_t *) rv->userdata)->mem;
518
memset((char *) m->mem_base + rv->X[rv_reg_a0], rv->X[rv_reg_a1],
@@ -532,6 +533,7 @@ static bool do_fuse6(riscv_t *rv,
532
533
534
535
536
+ /* FIXME: specify the correct cycle count for memcpy routine */
537
538
539
memcpy((char *) m->mem_base + rv->X[rv_reg_a0],
0 commit comments