📄 gptrget3.c
字号:
/*------------------------------------------------------------------------- gptrget3.c :- get 3 byte value from generic pointer Adopted for pic16 port by Vangelis Rokas, 2004 (vrokas@otenet.gr) Written By - Sandeep Dutta . sandeep.dutta@usa.net (1999) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this program; if not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. In other words, you are welcome to use, share and improve this program. You are forbidden to forbid anyone else to use, share and improve what you give them. Help stamp out software-hoarding!-------------------------------------------------------------------------*//*** $Id: gptrget3.c 3714 2005-04-02 13:13:53Z vrokas $*//* the return value is expected to be in WREG:PRODL:PRODH, therefore we choose return * type void here. Generic pointer is expected to be in WREG:PRODL:FSR0L, * so function arguments are void, too */extern POSTINC0;extern INDF0;extern FSR0L;extern FSR0H;extern WREG;extern TBLPTRL;extern TBLPTRH;extern TBLPTRU;extern TABLAT;extern PRODL;extern PRODH;void _gptrget3(void) __naked{ __asm /* decode generic pointer MSB (in WREG) bits 6 and 7: * 00 -> code * 01 -> EEPROM * 10 -> data * 11 -> unimplemented */ btfss _WREG, 7 bra _lab_01_ /* data pointer */ /* data are already in FSR0 */ movff _PRODL, _FSR0H movf _POSTINC0, w movff _POSTINC0, _PRODL movff _POSTINC0, _PRODH return _lab_01_: /* code or eeprom */ btfsc _WREG, 6 bra _lab_02_ ; code pointer movff _FSR0L, _TBLPTRL movff _PRODL, _TBLPTRH movwf _TBLPTRU /* fetch first byte */ TBLRD*+ movf _TABLAT, w /* fetch second byte */ TBLRD*+ movff _TABLAT, _PRODL /* fetch third byte */ TBLRD*+ movff _TABLAT, _PRODH return _lab_02_: /* EEPROM pointer */ /* unimplemented yet */ return __endasm;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -