view nocompile/a/asm_ah_02_L.d @ 638:61d8b062bf80

added some basic integer asm operations and registers tests
author thomask
date Sat, 20 Aug 2005 18:24:41 +0000
parents
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// __DSTRESS_ELINE__ 16

module dstress.nocompile.a.asm_ah_02_L;

void main(){
	version(D_InlineAsm){
		creal x;
	
		asm{
			mov
				AH,
				x;
		}
	}else{
		pragma(msg, "no Inline asm support");
		static assert(0);
	}
}