summaryrefslogtreecommitdiff
path: root/kernel/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/debug.c')
-rw-r--r--kernel/debug.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/kernel/debug.c b/kernel/debug.c
index 3ce4866..5f3c327 100644
--- a/kernel/debug.c
+++ b/kernel/debug.c
@@ -4,18 +4,3 @@ void bochs_breakpoint(void)
{
__asm__ volatile ("xchgw %bx, %bx;");
}
-
-void put_in_r8(uint64_t value)
-{
- __asm__ volatile ("movq %0, %%r8;" : : "r"(value) : "%r8");
-}
-
-void put_in_r9(uint64_t value)
-{
- __asm__ volatile ("movq %0, %%r9;" : : "r"(value) : "%r9");
-}
-
-void put_in_r10(uint64_t value)
-{
- __asm__ volatile ("movq %0, %%r10;" : : "r"(value) : "%r10");
-}