Files
badgemagic-firmware/src/power.h
2024-06-23 19:44:32 +07:00

12 lines
146 B
C

#ifndef __RESET_H__
#define __RESET_H__
static inline void reset_jump()
{
asm volatile("j 0x00");
}
void poweroff();
#endif /* __RESET_H__ */