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.
2 parents 2436ecb + 66dec82 commit 9f5c057Copy full SHA for 9f5c057
src/emulate.c
@@ -139,7 +139,7 @@ RV_EXCEPTION_LIST
139
return false; \
140
}
141
142
-/* get current time in microsecnds and update csr_time register */
+/* get current time in microseconds and update csr_time register */
143
static inline void update_time(riscv_t *rv)
144
{
145
struct timeval tv;
src/utils.c
@@ -64,7 +64,7 @@ void rv_clock_gettime(struct timespec *tp)
64
int32_t tv_sec, tv_nsec;
65
get_time_info(&tv_sec, &tv_nsec);
66
tp->tv_sec = tv_sec;
67
- tp->tv_nsec = tv_nsec; /* Transfer to microseconds */
+ tp->tv_nsec = tv_nsec;
68
69
70
char *sanitize_path(const char *input)
0 commit comments