view tangotests/asm4.d @ 245:d61ce72c39ab trunk

[svn r262] Fixed debug info for normal function parameters. Fixed debug info for pointers to basic types.
author lindquist
date Mon, 09 Jun 2008 12:43:16 +0200
parents 79d8f6b3fbaf
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;
    }
}