10 lines
228 B
Plaintext
10 lines
228 B
Plaintext
//#include <xs1.h>
|
|
|
|
void device_reboot_implementation(chanend spare);
|
|
|
|
// This version just exists so generate an assembly wrapper function for me.
|
|
void device_reboot(chanend spare)
|
|
{
|
|
device_reboot_implementation(spare);
|
|
}
|