File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -809,7 +809,7 @@ void rv_step(struct riscv_t *rv, int32_t cycles)
809
809
#define DISPATCH () \
810
810
{ \
811
811
if (rv->csr_cycle >= cycles_target || rv->halt) \
812
- goto exit ; \
812
+ goto quit ; \
813
813
/* fetch the next instruction */ \
814
814
inst = rv -> io .mem_ifetch (rv , rv -> PC ); \
815
815
/* standard uncompressed instruction */ \
@@ -826,7 +826,7 @@ void rv_step(struct riscv_t *rv, int32_t cycles)
826
826
{ \
827
827
/* dispatch this opcode */ \
828
828
if (!op_##instr(rv, inst)) \
829
- goto exit ; \
829
+ goto quit ; \
830
830
/* increment the cycles csr*/ \
831
831
rv ->csr_cycle++; \
832
832
}
@@ -856,7 +856,7 @@ void rv_step(struct riscv_t *rv, int32_t cycles)
856
856
#endif
857
857
TARGET (unimp )
858
858
859
- exit :
859
+ quit :
860
860
return ;
861
861
862
862
#undef DISPATCH
You can’t perform that action at this time.
0 commit comments