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

📄 prtsp68k.lib

📁 open source of basic interpreter of 68
💻 LIB
字号:
*
*  prtsp68k.lib      library routine to print a space to the output device (68xxx)
*
*  This routine simply sends a space to the current output device, using
*  the library function outch in outch.lib.
*
*  This routine preserves all registers.
*

_prtspc
	move.l	d0,-(a7)		save d0
	move.b	#$20,d0			get space
	jsr	_outch			send it
	move.l	(a7)+,d0		restore d0
	rts


⌨️ 快捷键说明

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