14 lines
142 B
C
14 lines
142 B
C
/**
|
|
* \file
|
|
*/
|
|
|
|
#ifndef HALT_H
|
|
#define HALT_H
|
|
|
|
/**
|
|
* Clear interrupts and halt the CPU,
|
|
*/
|
|
void halt() __attribute__((noreturn));
|
|
|
|
#endif
|