Booting Raspberry Pi 3: Difference between revisions

m
Bot: Replace deprecated source tag with syntaxhighlight
[unchecked revision][unchecked revision]
m (Bot: Replace deprecated source tag with syntaxhighlight)
m (Bot: Replace deprecated source tag with syntaxhighlight)
Line 134:
The kernel is as simple as creating a kern_main function for the bootstrap stage to transfer control to. You notice that in start.S we have the program branch into the function. All we need to do is provide one.
 
<sourcesyntaxhighlight lang="c">
 
#include <stdbool.h>
Line 143:
while (true);
}
</syntaxhighlight>
</source>
 
== Conclusion ==