Pascal Bare Bones: 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 9:
 
=== stub.asm ===
<sourcesyntaxhighlight lang="asm">
;/////////////////////////////////////////////////////////
;// //
Line 89:
KERNEL_STACK:
resb KERNEL_STACKSIZE
</syntaxhighlight>
</source>
 
=== kernel.pas ===
<sourcesyntaxhighlight lang="pascal">
{
/////////////////////////////////////////////////////////
Line 163:
 
end.
</syntaxhighlight>
</source>
 
=== console.pas ===
<sourcesyntaxhighlight lang="pascal">
{
/////////////////////////////////////////////////////////
Line 314:
 
end.
</syntaxhighlight>
</source>
 
=== multiboot.pas ===
Line 580:
 
Accumulating the lines from previous part we can make a '''Makefile''':
<sourcesyntaxhighlight lang="bash">
# Freepascal BareboneOS
# Makefile
Line 631:
rm -f *.ppu
 
</syntaxhighlight>
</source>
 
==Further Steps==