dumping whole memory of Megawin MM36SB010





1
Date Submitted Tue. Sep. 1st, 2009 12:38 AM
Revision 1 of 1
Scripter Cloudgen
Tags Assembly | Megawin | MM36SB010 | RSE
Comments 0 comments
This assembly code is used to read EFlash main storage continuously, especially useful for dumping the whole memory of an EFlash. See source from "Programming 6502 assembly language"

;---------------------------------------------
;EFLASH_RMEC
; Purposes:
;       1. Read EFlash main storage continuously
;       2. useful for whole memory dumping
; Input:
; Output:
; Required Variables:
; Required Functions:
; Required Table:
; Labels used:
;       1. EFLASH_RMEC:
; Variables used:
; Constant used:
; Function used:
; Used by:
; Version: 1.0
; Revision Date: 28/8/2006
;---------------------------------------------
EFLASH_RMEC:
        LDA #$A0
        STA E_BUFFER
        LDA #%00000011
        STA E_RW
        NOP
        NOP
        LDA #%00000010
        STA E_RW
        NOP
        NOP
        RTS
;End of EFLASH_RMEC
;---------------------------------------------
 

Comments

There are currently no comments for this snippet.

Voting

Votes Up


Scripter Cloudgen

Votes Down