Radix cross Linux Toolchains for ARC architecture

ARC Toolchains for boot loaders components of some SoCs (such as Amlogic System on Chip)

40 Commits   0 Branches   13 Tags

#include <stdlib.h>
#include <inttypes.h>

int main()
{
   uint32_t a = 7, b = 3, c, r;

   c = a / b;
   r = a % b;

   return( 0 );
}