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

📄 gptrput1.c

📁 sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu
💻 C
字号:
/*-------------------------------------------------------------------------   gptrput1.c :- put 1 byte value at 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: gptrput1.c 3714 2005-04-02 13:13:53Z vrokas $*//* write address is expected to be in WREG:PRODL:FSR0L while * write value is in TBLPTRL:TBLPTRH:PRODH:[stack] */ extern POSTINC0;extern PREINC1;extern INDF0;extern FSR0L;extern FSR0H;extern WREG;extern TBLPTRL;extern TBLPTRH;extern TBLPTRU;extern TABLAT;extern PRODL;extern PRODH;void _gptrput1(void) __naked{  __asm    /* decode generic pointer MSB (in WREG) bits 6 and 7:     * 00 -> code (unimplemented)     * 01 -> EEPROM (unimplemented)     * 10 -> data     * 11 -> unimplemented     */    btfss	_WREG, 7    bra		_lab_01_        /* data pointer  */    /* data are already in FSR0 */    movff	_PRODL, _FSR0H        movff	_PREINC1, _POSTINC0        return    _lab_01_:    /* code or eeprom */    btfss	_WREG, 6    return        /* code pointer, cannot write code pointers */    _lab_02_:    /* EEPROM pointer */    /* unimplemented yet */  return  __endasm;}

⌨️ 快捷键说明

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