Espresso 0.0.2c
This commit is contained in:
@ -3,7 +3,8 @@
|
||||
|
||||
#define ESPRESSO_KERNEL_
|
||||
|
||||
#define KERNEL_VERSION "0.0.2a"
|
||||
#define KERNEL_VERSION "0.0.2c"
|
||||
#define KERNEL_RELEASE_YEAR "2026"
|
||||
|
||||
#define _STATE_NORMAL 0
|
||||
#define _STATE_HANDLED 1
|
||||
@ -18,4 +19,14 @@
|
||||
#define __noreturn __attribute__((noreturn))
|
||||
#define __section(x) __attribute__((section(x)))
|
||||
|
||||
#define __noreturn __attribute__((noreturn))
|
||||
|
||||
extern void _cli_asm(void);
|
||||
extern void _sti_asm(void);
|
||||
|
||||
#define IRQ_DISABLE() _cli_asm();
|
||||
#define IRQ_ENABLE() _sti_asm();
|
||||
|
||||
//#define DEBUG_USE_SSE2
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user