📄 prttb68k.lib
字号:
*
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -