File: migrate.inc

package info (click to toggle)
gputils 1.5.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 159,960 kB
  • sloc: pascal: 1,459,440; ansic: 319,705; sh: 4,323; makefile: 2,134; lex: 1,755; yacc: 1,595
file content (24 lines) | stat: -rw-r--r-- 555 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  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