2008-11-20から1日間の記事一覧

D言語のインラインアセンブラ

// asmtest.d import std.cstream; void main() { int result; asm { mov result, 110; add result, 40; } dout.writefln("%d", result); } $ gdc asmtest.d $ ./a.out 150 $