diff options
Diffstat (limited to 'src/core/int.S')
| -rw-r--r-- | src/core/int.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/int.S b/src/core/int.S index daf0224..861d5cc 100644 --- a/src/core/int.S +++ b/src/core/int.S @@ -6,7 +6,8 @@ .macro call_printk msg mov \msg, %rdi mov $0, %eax # Required for variadic functions - call printk + mov $printk,%rcx + call *(%rcx) .endm .globl INT_DEFAULT |
