aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/multiply/multiply.h
blob: b2b1cf7a8eb79ae9352bb8acc59fb16f1c74e852 (plain)
1
2
3
4
5
6
7
8
9
10
11
// See LICENSE for license details.

//**************************************************************************
// Software multiply function
//--------------------------------------------------------------------------

// Simple C version
int multiply(int x, int y);

// Simple assembly version
int multiply_asm(int x, int y);