10 lines
152 B
C
10 lines
152 B
C
|
#ifndef TASKING_HELPERS_H
|
||
|
#define TASKING_HELPERS_H
|
||
|
|
||
|
#include "tasking.h"
|
||
|
|
||
|
void switchTask(Registers *from, Registers *to);
|
||
|
uint32_t readEip();
|
||
|
|
||
|
#endif
|