diff options
Diffstat (limited to 'src/rv64/rv64-err.c')
| -rw-r--r-- | src/rv64/rv64-err.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rv64/rv64-err.c b/src/rv64/rv64-err.c index 19be090..914bb91 100644 --- a/src/rv64/rv64-err.c +++ b/src/rv64/rv64-err.c @@ -10,11 +10,11 @@ /// @brief Goes into a panic state. /// @param reason why? -void mp_panic(const char* reason) +void cb_panic(const char* reason) { - mp_put_string("Error: "); - mp_put_string(reason); - mp_put_char('\n'); + cb_put_string("Error: "); + cb_put_string(reason); + cb_put_char('\n'); while (yes) { |
