scratchspace.asm

来自「Alarm clock with PIC microcontroller」· 汇编 代码 · 共 27 行

ASM
27
字号
;==============================================================================
; Scratch Space
;------------------------------------------------------------------------------

; Notes:
;
; This module reserves a small number of contiguous registers that can be used
; be routines as temporary storage during thier operation.
;
; These registers should only be used in routines that do not call on to
; further routines as the values may be overwritten.

;==============================================================================
; Revision History:
;
; 2005-02-06 AJ Initial version
;------------------------------------------------------------------------------

                global  SCRATCH

;==============================================================================

                udata
SCRATCH         res     2               ;Reserve a few scratch registers

                end

⌨️ 快捷键说明

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