Hey all,
I am trying to create a TSR. This is done with the following code
I am calling the interrupt with this code
This runs well but for the life of me I can not get the return value of &H1954, any ideas?
TIA
I am trying to create a TSR. This is done with the following code
Code:
'we need to create the popup lResult = SetMem(-500000) Popup Interrupt &H14, 0, off, off Do popup sleep 'what function was called lResult = Reg(%AX) if lResult = &H1C00 then lPort = REG(%DX) Reg %AX, &H1954 End if Loop
Code:
Port%=P% REG 1,&H1C00 REG 4,Port% CALL INTERRUPT &H14 lResult% = Reg(1) IF lResult%=&H1954 THEN Print "GOOD" Else Print "BAD" End if
TIA
Comment