⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eepstrl.s

📁 cxstm8 编译器
💻 S
字号:
;	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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -