From 8e79ceaa7d3995df5a5dcf0ffdbd52ebe4c52163 Mon Sep 17 00:00:00 2001 From: Aleksa Vučković Date: Sun, 9 Jan 2022 18:50:48 +0100 Subject: Indentation --- src/as/boot.s | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'src/as/boot.s') diff --git a/src/as/boot.s b/src/as/boot.s index 68e5947..907cd3c 100644 --- a/src/as/boot.s +++ b/src/as/boot.s @@ -3,7 +3,7 @@ .set FLAGS, ALIGN | MEMINFO .set MAGIC, 0x1BADB002 .set CHECKSUM, -(MAGIC + FLAGS) - + .section .multiboot .align 4 .long MAGIC @@ -51,20 +51,20 @@ stack_top: .section .text .type _start, @function _start: - call init_gdt_table - ljmp $CODE_SEGMENT, $code - + call init_gdt_table + ljmp $CODE_SEGMENT, $code + code: - movw $DATA_SEGMENT, %ax - movw %ax, %ds - movw %ax, %es - movw %ax, %fs - movw %ax, %gs - movw %ax, %ss - movl $stack_top, %esp - cli - call _init - call kernel_main - hlt - + movw $DATA_SEGMENT, %ax + movw %ax, %ds + movw %ax, %es + movw %ax, %fs + movw %ax, %gs + movw %ax, %ss + movl $stack_top, %esp + cli + call _init + call kernel_main + hlt + .size _start, . - _start -- cgit v1.2.3