D 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 20:
==start.asm==
 
<sourcesyntaxhighlight lang="asm">
 
global start
Line 81:
resb STACKSIZE
 
</syntaxhighlight>
</source>
 
Assemble that with:
Line 88:
 
==kernel.main.d==
<sourcesyntaxhighlight lang="d">
module kernel.main;
import core.volatile;
Line 107:
}
}
</syntaxhighlight>
</source>
 
You then compile that with: