Page 2 of 2

Re:Test kernels refuses to print to screen

Posted: Thu Oct 27, 2005 5:48 pm
by AR
Is "puts" in C or in assembly? If it's in assembly then you may have broken the calling convention. *(.rodata*) goes in the .text section (read-only data, and .text is read-only).

Re:Test kernels refuses to print to screen

Posted: Fri Oct 28, 2005 1:27 am
by dan
puts is written in assembly. My code is very simular to brans code.

Ok, I'll give that a try later on, thanks.