eepstrl.s

来自「cxstm8 编译器」· S 代码 · 共 28 行

S
28
字号
;	WRITE A LARGE STRUCTURE IN EEPROM
;	Copyright (c) 2008 by COSMIC Software
;	- eeprom address in X extension
;	- structure address in Y
;	- structure size in X 
;
	xdef	c_eewstrl
	xref.b	c_x, c_y
	include	"eeprom.i"
	.dcall	"2,0,c_eewstrl"
;
c_eewstrl:
	addw	x,c_x		; end address
	ldw	c_y,x		; in memory
	ldw	x,c_x		; eeprom address
bcl:
	ld	a,(y)		; get byte
	ld	(x),a		; and store in latch
wait:
	btjt	IAPSR,#EOP,wait ; wait for completion
	incw	y		; next byte
	incw	x		; next byte
	cpw	x,c_y
	jrne	bcl		; loop if more bytes
	ret			; return
;
	end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?