diff options
author | hondew <pokehondew@gmail.com> | 2019-02-07 11:24:09 -0500 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-02-28 21:21:56 -0600 |
commit | 5c8cc5225ff7c11533f8421039e6e9e75adcee90 (patch) | |
tree | f8cb9ba1f8a9a08537a2f2ade3dd93d1ec81d6bb /include/task.h | |
parent | baf95a8e7ab5bf295f10c4e30d043c9629f2d2a3 (diff) |
document slot machine
Diffstat (limited to 'include/task.h')
-rw-r--r-- | include/task.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/task.h b/include/task.h index a199ba128..4852571b4 100644 --- a/include/task.h +++ b/include/task.h @@ -1,6 +1,9 @@ #ifndef GUARD_TASK_H #define GUARD_TASK_H +#define HEAD_SENTINEL 0xFE +#define TAIL_SENTINEL 0xFF + #define NUM_TASKS 16 typedef void (*TaskFunc)(u8 taskId); |