summaryrefslogtreecommitdiff
path: root/riscv/riscv-probe/env/semihost/setup.c
blob: 407ee144101ddc62d224840386bbe83cf49507cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// See LICENSE for license details.

#include "femto.h"

auxval_t __auxv[] = {
    { 0, 0 }
};

void arch_setup() {
    register_console(&console_semihost);
    register_poweroff(&poweroff_semihost);
}