From edaae1d4c243d1c0645db5fbffdbb5cc0e87a241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20Hord=C3=A9?= Date: Tue, 1 Jan 2019 13:37:29 +0100 Subject: [PATCH] fix: correction assembler system.S --- system/system.S | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/system/system.S b/system/system.S index 832063a..a0f19f0 100644 --- a/system/system.S +++ b/system/system.S @@ -11,16 +11,16 @@ .section ".text" .global startup_32 startup_32: - ljmp SEL_KERNEL_CODE,$suite + ljmp $SEL_KERNEL_CODE,$suite suite: - movw SEL_KERNEL_DATA, %ax + movw $SEL_KERNEL_DATA, %ax movw %ax, %ds movw %ax, %es movw %ax, %fs movw %ax, %gs - movw SEL_KERNEL_STACK, %ax + movw $SEL_KERNEL_STACK, %ax movw %ax, %ss - movl KERNEL_STACK_ADDR, %esp + movl $KERNEL_STACK_ADDR, %esp xor %eax,%eax xor %ebx,%ebx xor %ecx,%ecx