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

📄 eepstr.s

📁 cxstm8 编译器
💻 S
字号:
;	WRITE A STRUCTURE IN EEPROM
;	Copyright (c) 2008 by COSMIC Software
;	- eeprom address in X
;	- structure address in Y
;	- structure size in A
;
	xdef	d_eewstr
	xref.b	c_x
	include	"eeprom.i"
	.dcall	"3,0,d_eewstr"
;
d_eewstr:
	ld	c_x,a		; copy count
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
	dec	c_x
	jrne	bcl		; loop if more bytes
	retf			; return
;
	end

⌨️ 快捷键说明

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