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.
I'm not quite sure what to do here.. whenever I try to compile my OS with my linker script it claims every function is defined multiple times. I have all of them defined in 3 .h files.
cg123 wrote:I'm guessing it's something incredibly stupid I did.. seems most likely.
;D
You should not define your functions in header files, but just declare them That's most likely the reason for these linker errors (I haven't looked at your code).
Ok, I found the problem.. I didn't need to add the filenames to the command for the linker, I had already specified them in the linker script.. so it was linking everything twice. xD