mirror of
https://github.com/rcore-os/rCore.git
synced 2024-11-23 16:36:18 +04:00
14 lines
244 B
C
14 lines
244 B
C
#ifndef _RISCV_FINISHER_H
|
|
#define _RISCV_FINISHER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define FINISHER_REG_FINISH 0
|
|
#define FINISHER_FAIL 0x3333
|
|
#define FINISHER_PASS 0x5555
|
|
|
|
void finisher_exit(uint16_t code);
|
|
void query_finisher(uintptr_t fdt);
|
|
|
|
#endif
|