view tangotests/asm4.d @ 230:79d8f6b3fbaf trunk

[svn r246] fixed asm4 test
author lindquist
date Sat, 07 Jun 2008 21:38:14 +0200
parents cac3d27ae481
children
line wrap: on
line source

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;
    }
}