各位大哥晚安!
目前我在學習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
}
}
謝謝各位大哥!!!