summaryrefslogtreecommitdiff
path: root/src/kernel/arch/amd64/debug.c
diff options
context:
space:
mode:
authordzwdz2022-07-16 21:03:40 +0200
committerdzwdz2022-07-16 21:03:40 +0200
commitc8ed6aa7476b7f506366d9fe56ed6f2e7a12b40d (patch)
treeeac26e380be691734d767bb1238e30751e0351e2 /src/kernel/arch/amd64/debug.c
parentb26098268eb443f1ed3dc50d902b2beee40c8342 (diff)
amd64: init can print to the terminal now
Diffstat (limited to 'src/kernel/arch/amd64/debug.c')
-rw-r--r--src/kernel/arch/amd64/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/arch/amd64/debug.c b/src/kernel/arch/amd64/debug.c
index 52127da..c17c906 100644
--- a/src/kernel/arch/amd64/debug.c
+++ b/src/kernel/arch/amd64/debug.c
@@ -2,7 +2,7 @@
void *debug_caller(size_t depth) {
void **rbp;
- asm("mov %%rbp, %0"
+ asm("mov %%rbp, %0"
: "=r" (rbp));
while (depth--) {
if (!rbp) return NULL;