This is written in AT&T syntax. I'm asking if there is any issues with my gdt here, because my interrupts aren't working. Please point out any errors I may have
I'm using GRUB as my bootloader and compiling for the i386 architecture. I already have my cross toolchain setup & I can't really seem to find any error here
# TODO: Rewrite in intel syntax
# multiboot header constants
.set ALIGN, 1<<0
.set MEMINFO, 1<<1
.set FLAGS, ALIGN | MEMINFO # flags
.set MAGIC, 0x1BADB002 # magic number
.set CHECKSUM, -(MAGIC + FLAGS) # checksum
# multiboot header
.section .multiboot
.align 4
.long MAGIC
.long FLAGS
.long CHECKSUM
.section .gdt
# Setup that GDT
gdt:
gdt_null:
.word 0
.word 0
.word 0
.word 0
gdt_code:
.word 65535
.word 0
.byte 0
.byte 154
.byte 207
.byte 0
gdt_data:
.word 65535
.word 0
.byte 0
.byte 154
.byte 207
.byte 0
gdt_end:
gdt_desc:
.word gdt_end - gdt - 1
.word gdt
# reserve stack
.section .bss
.align 16
stack_bottom:
.skip 16384 # 16 KiB
stack_top:
# entry point for the kernel
.section .text
.global _start
.type _start, @function
_start:
movl $stack_top, %esp
# to the kernel we go!
push %eax
push %ebx
cli # disable interrupts
lgdt (gdt_desc) # load GDT
sti # enable interrupts
call _main
cli
hlt
.size _start, . - _start