prttb68k.lib

来自「open source of basic interpreter of 68」· LIB 代码 · 共 22 行

LIB
22
字号
*
*  prttb68k.lib      library routine to print a tab to the output device (68xxx)
*
*  This routine simply sends a tab char to the output device, using the
*  routine outch in outch.lib.
*
*  You can make this routine fancier, if you like, by rewriting it to
*  send an appropriate number of spaces to move the output cursor to the
*  correct column.
*
*  This routine preserves all registers.
*

_prttab
	move.l	d0,-(a7)		save d0
	move.b	#$09,d0			get tab
	jsr	_outch			send it
	move.l	(a7)+,d0		restore d0
	rts


⌨️ 快捷键说明

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