|
|
|
dumping whole memory of Megawin MM36SB010
1
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
;---------------------------------------------




There are currently no comments for this snippet.