aboutsummaryrefslogtreecommitdiff
path: root/src/power.h
blob: 4d418a0dd6fa10c8dd158de8b4241d3c09a3cd4e (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __RESET_H__
#define __RESET_H__

static inline void reset_jump()
{
	asm volatile("j 0x00");
}

void poweroff();

#endif /* __RESET_H__ */