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

📄 resultregister.asm

📁 Alarm clock with PIC microcontroller
💻 ASM
字号:
;==============================================================================
; Return Register Declaration
;------------------------------------------------------------------------------

; Notes:
;
; The 12 bit core does not have a RETURN instruction which means that all
; computed results must be returned in a register. This module defines a
; register that can be used for this purpose.

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

                include ../pic.inc

                if      HAS_12_BIT_CORE

                global  RESULT

;==============================================================================
; Reserve a register for returning computed data values.

                udata
RESULT          res     1               ;Holds computed return values

                endif
                end

⌨️ 快捷键说明

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