view tangotests/asm2.d @ 303:4aa2b6753059 trunk

[svn r324] Small indentation fixes. Added end of line to complex.cpp.
author ChristianK
date Wed, 25 Jun 2008 20:42:30 +0200
parents 74701ba40398
children
line wrap: on
line source

module tangotests.asm2;

extern(C) int printf(char*, ...);

int main()
{
    int i = 40;
    int j = 2;
    asm
    {
        mov EAX, i;
        mov EBX, j;
        add EAX, EBX;
        mov i, EAX;
    }
    printf("42 = %d\n", i);
    assert(i == 42);
    return 0;
}