Kernel: Syscalls now get the interrupt stack

This commit is contained in:
Bananymous
2023-07-21 11:01:19 +03:00
parent 21c6135ae2
commit 4e35b8b49d
3 changed files with 24 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
#pragma once
#include <stdint.h>
namespace Kernel
{
struct InterruptStack
{
uint64_t rip;
uint64_t cs;
uint64_t flags;
uint64_t rsp;
uint64_t ss;
};
}