各位大哥晚安!
目前我在学习asm,碰到了一个瓶颈试不出来
您的一个分享是我学习的一大步,先感谢了!!!
(有看过80386 chip dataseet,跟网络教学)
我是想要把一个指标复制到32-bit registers EAX 中,
却一直得到error C2415: improper operand type。
用far pointer结果也是一样
编译环境: 16-bit compiler,compiler's cpu target:80386
程式码
int XmsQueryFreeExtendedMemory(
unsigned long far *puiLargestFreeBlock,
unsigned long far *puiTotalFree)
{
unsigned long uiLargestFreeBlock;
_asm
{
mov ah, 88h
call [XMSControl]
push esi
#if 1
mov esi, puiLargestFreeBlock
#else
mov esi, uiLargestFreeBlock
#endif
mov DWORD PTR [esi], eax
}
}
谢谢各位大哥!!!