Files
ldc/tangotests/asm4.d
Tomas Lindquist Olsen 61fdcc7040 [svn r246] fixed asm4 test
2008-06-07 21:38:14 +02:00

21 lines
252 B
D

module tangotests.asm4;
extern(C) int printf(char*,...);
void main()
{
char* fmt = "yay!\n";
asm
{
jmp L2;
L1:;
jmp L3;
L2:;
jmp L1;
L3:;
push fmt;
call printf;
pop EAX;
}
}