This makes a memory dump, forgot what it does ??
Is the dump simulated and if not, can the whole RAM be dumped ?
;-------------------------------------------------1996 Andrew Kennedy---------
; dumpmem.asm Dump first meg of memory to a file
; Works thru Win XP
.model tiny
.code
org 100h
start:
xor cx,cx
mov dx,offset m
mov ah,3ch
int 21h
xchg ax,bx
mov ch,80h
xor dx,dx
xor si,si
mark:
mov ds,si
mov ah,40h
int 21h
add si,800h
jnb mark
int 20h
m db '1stMgRam.txt',0
end start