OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libc/] [machine/] [sparc/] [machine/] [sparclet.h] - Rev 1765

Compare with Previous | Blame | View Log

/* 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__ int
scan (int a, int b)
{
  int res;
  __asm__ ("scan %1,%2,%0" : "=r" (res) : "r" (a), "r" (b));
  return res;
}
 
/* sparclet shuffle instruction */
 
extern __inline__ int
shuffle (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_ */
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.