Re: [Etherboot-developers] About invoke interrupt F8
Brought to you by:
marty_connor,
stefanhajnoczi
|
From: <ke...@us...> - 2002-03-26 02:44:08
|
>hai, >I am doing for a DOS utility that retrieve data from BOOTP/DHCP within a >DOS -based >etherboot image.When I invoke the interrupt F8H(AX = 0x9C02),the result >is BX=0x9f1e,DX=0x0ce5, >is it correct? Maybe. It will depend on the situation at runtime and won't be always the same numbers. The length is in CX, which you didn't tell us. The linear address is 0x9f1e0 + 0xce5. You can address the data in real-mode by loading those registers into DS:SI or ES:DI (don't forget to restore them afterwards). Just try it and see. Let us know how you go. |