mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 03:13:13 +01:00
16 lines
204 B
D
16 lines
204 B
D
module tangotests.asm3;
|
|
|
|
extern(C) int printf(char*, ...);
|
|
|
|
void main()
|
|
{
|
|
char* fmt = "Hello D World\n";
|
|
printf(fmt);
|
|
asm
|
|
{
|
|
push fmt;
|
|
call printf;
|
|
pop EAX;
|
|
}
|
|
}
|