From 1aac36f788834699b6891aea7a83eb950bd5e8f6 Mon Sep 17 00:00:00 2001 From: stefan Date: Sat, 8 Apr 2023 20:42:18 -0400 Subject: no idea whot i changed lol --- sys/include/cpu.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 sys/include/cpu.h (limited to 'sys/include/cpu.h') diff --git a/sys/include/cpu.h b/sys/include/cpu.h new file mode 100644 index 0000000..9567496 --- /dev/null +++ b/sys/include/cpu.h @@ -0,0 +1,10 @@ +#ifndef _CPU_H +#define _CPU_H + +struct hart { + int intr_stack; +}; + +struct hart harts[NPROC] = {0}; + +#endif /* _CPU_H */ -- cgit v1.2.3