From e7bc50ca8ffcaa6ed68ebd2315f78b0f5a7d10ad Mon Sep 17 00:00:00 2001 From: klaar36 Date: Fri, 20 Mar 2015 17:30:24 +0100 Subject: Initial Pintos --- 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