I am starting to experiment with writing a kernel and am happy to do it. I have a main bootloader and the following directives:
[BITS 16]
[ORG 0x0000]
However, in the kernel textbook, it starts with:
[ORG 0x0000]
[BITS 16]
I was wondering if the order in which these directives changed? I am using NASM version 2.06rc2, OpenSUSE 11.2
source
share