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

📄 _divuint.c

📁 sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu
💻 C
字号:
/* ---------------------------------------------------------------------------   _divuint.c : 16 bit division routines for pic14 devices  	Written By	Raphael Neider <rneider AT web.de> (2005)   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 of the License, 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 library; if not, write to the    Free Software Foundation, Inc., 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: _divuint.c 4148 2006-05-01 20:47:12Z tecodev $   ------------------------------------------------------------------------ */unsigned int_divuint (unsigned int a, unsigned int b){  unsigned int result = 0;  unsigned int mask = 0x01;  /* prevent endless loop (division by zero exception?!?) */  if (!b) return (unsigned int)-1;  /* it would suffice to make b >= a, but that test is   * more complex and will fail if a has its MSB set */  while (!(b & (1UL << (8*sizeof(unsigned int)-1)))) {    b <<= 1;    mask <<= 1;  } // while  /* now add up the powers of two (of b) that "fit" into a */  /* we might stop if (a == 0), but that's an additional test in every iteration... */  while (mask) {    if (a >= b) {      result += mask;      a -= b;    } // if    b >>= 1;    mask >>= 1;  } // while  return result;}

⌨️ 快捷键说明

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