stupid merge ... :/

This commit is contained in:
Tomas Lindquist Olsen
2008-07-30 10:41:31 +02:00
5 changed files with 67 additions and 7 deletions

11
tests/mini/compile_asm1.d Normal file
View File

@@ -0,0 +1,11 @@
extern(C) int printf(char*, ...);
void main()
{
void* i;
asm
{
mov EAX, FS:4;
mov i, EAX;
}
printf("FS:4 = %p\n", i);
}