mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
21 lines
252 B
D
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;
|
|
}
|
|
}
|