migrate.inc

来自「PIC ASM TOOL MPASMWin5.14」· INC 代码 · 共 25 行

INC
25
字号
  LIST
; MIGRATE.INC
  NOLIST
; This file provides macros for ease of migration from
; 16 and 17 devices to 18 devices.
; As is, it must be assembled with case sensitivity enabled (/c+).
; To assemble with /c-, remove the lowercase (or uppercase) version
; of each macro.

  #define clrw clrf WREG 
  #define CLRW CLRF WREG
  #define negw negf WREG
  #define NEGW NEGF WREG
  #define movpf movff
  #define MOVPF MOVFF
  #define movfp movff
  #define MOVFP MOVFF
  #define lcall call
  #define LCALL CALL
  #define lgoto goto
  #define LGOTO GOTO

  LIST

⌨️ 快捷键说明

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