aboutsummaryrefslogtreecommitdiff
path: root/arch/riscv64/kernel/cpu.c
blob: 05580402af6581cb5afab3cec755cca07d4e2704 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/**
 * @file cpu.c
 * riscv64 implementation of cpu handling.
 */

#include <arch/cpu.h>

id_t cpu_id()
{
	return 0; /* VERY MUCH TEMP */
}