Re: Is there any example of using int 15h,ax=e820h?
- From: Tim Roberts <spamtrap@xxxxxxxxxx>
- Date: Tue, 27 Sep 2005 06:23:20 +0000 (UTC)
"bog" <spamtrap@xxxxxxxxxx> wrote:
>
>Hi,everybody
>I'm now trying to get my machine's memory map under 1MB space using int
>15h ax=e820h,but haven't succeeded till now.
My relatively new Dell Inspiron 8600 returns a "not supported" error
(AH=86).
..model small
..386
..stack 10
..data
buffer db 40 dup (0)
..code
main proc
mov ax, @data
mov ds, ax
mov eax, 0000e820h
mov edx, 'SMAP'
xor ebx, ebx
mov ecx, 40
push ds
pop es
lea di, buffer
int 15h
mov ax, 4C00h
int 21h
main endp
end main
>Can somebody give me an example of using int 15h,ax=e820h?If it is run
>under DOS or windows,that is better.Sorry,I don't know if it could run
>under DOS or windows.
>
>Or is there any other suggestions on how to solve this problem?
Solve what problem? What are you trying to learn?
--
- Tim Roberts, timr@xxxxxxxxx
Providenza & Boekelheide, Inc.
.
- Follow-Ups:
- Re: Is there any example of using int 15h,ax=e820h?
- From: spamtrap
- Re: Is there any example of using int 15h,ax=e820h?
- References:
- Prev by Date: Re: Is there any example of using int 15h,ax=e820h?
- Next by Date: Re: asm and nasm newbie
- Previous by thread: Re: Is there any example of using int 15h,ax=e820h?
- Next by thread: Re: Is there any example of using int 15h,ax=e820h?
- Index(es):
Relevant Pages
|