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

📄 sparclet.h

📁 这是leon3处理器的交叉编译链
💻 H
字号:
/* Various stuff for the sparclet processor.   This file is in the public domain.  */#ifndef _MACHINE_SPARCLET_H_#define _MACHINE_SPARCLET_H_#ifdef __sparclet__/* sparclet scan instruction */extern __inline__ intscan (int a, int b){  int res;  __asm__ ("scan %1,%2,%0" : "=r" (res) : "r" (a), "r" (b));  return res;}/* sparclet shuffle instruction */extern __inline__ intshuffle (int a, int b){  int res;  __asm__ ("shuffle %1,%2,%0" : "=r" (res) : "r" (a), "r" (b));  return res;}#endif /* __sparclet__ */#endif /* _MACHINE_SPARCLET_H_ */

⌨️ 快捷键说明

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