From d4522b8e9854178473adcea0fbb84f23f6e744bd Mon Sep 17 00:00:00 2001 From: Felipe Boeira Date: Tue, 8 Jan 2019 18:39:03 +0100 Subject: Initial commit --- src/threads/flags.h | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/threads/flags.h (limited to 'src/threads/flags.h') diff --git a/src/threads/flags.h b/src/threads/flags.h new file mode 100644 index 0000000..5654ac7 --- /dev/null +++ b/src/threads/flags.h @@ -0,0 +1,8 @@ +#ifndef THREADS_FLAGS_H +#define THREADS_FLAGS_H + +/* EFLAGS Register. */ +#define FLAG_MBS 0x00000002 /* Must be set. */ +#define FLAG_IF 0x00000200 /* Interrupt Flag. */ + +#endif /* threads/flags.h */ -- cgit v1.2.1