kernel help

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
beyondsociety

kernel help

Post by beyondsociety »

I am trying to write a simple kernel to work with my bootsector that I am making. What I need to know is, what does the kernel have to have in it to work right.

ex: kernel

[bits 16]
[org 0]


times 510($-$$) db 0 ; do I need this in order for the
dw 0xAA55 ; kernel to work

If so, does the this have to be set to any particular size of bytes.
Thunder

Re:kernel help

Post by Thunder »

times 510($-$$) db 0 ; do I need this in order for the
dw 0xAA55 ; kernel to work

If so, does the this have to be set to any particular size of bytes.

Thats just for bootloader ;)
Post Reply