From: cmk128 on
Hi
After i successful calling int 10 func 4f0a, it return this table:
0001h set bank (see AX=4F05h)
0002h set display start (see AX=4F07h)
0003h set palette (see AX=4F09h)

This table is the function pointer table, but none of this function
can used to change the display mode, so how can i retrieve a function
pointer for changing display mode?
thanks
from Peter (cmk128(a)hotmail.com)

From: Evenbit on
On Feb 19, 3:31 pm, cmk...(a)hotmail.com wrote:
> Hi
> After i successful calling int 10 func 4f0a, it return this table:
> 0001h set bank (see AX=4F05h)
> 0002h set display start (see AX=4F07h)
> 0003h set palette (see AX=4F09h)
>
> This table is the function pointer table, but none of this function
> can used to change the display mode, so how can i retrieve a function
> pointer for changing display mode?

Just guessing...

mov ah, 0
int 10h

Nathan.

From: cmk128 on
On 2¤ë20¤é, ¤U¤È6®É25¤À, "Evenbit" <nbaker2...(a)charter.net> wrote:
> On Feb 19, 3:31 pm, cmk...(a)hotmail.com wrote:
>
> > Hi
> > After i successful calling int 10 func 4f0a, it return this table:
> > 0001h set bank (see AX=4F05h)
> > 0002h set display start (see AX=4F07h)
> > 0003h set palette (see AX=4F09h)
>
> > This table is the function pointer table, but none of this function
> > can used to change the display mode, so how can i retrieve a function
> > pointer for changing display mode?
>
> Just guessing...
>
> mov ah, 0
> int 10h
>
> Nathan.

no, i cannot do it this way, i am in p-mode
thanks