Add LICENSE
[riscv-tests.git] / benchmarks / multiply / multiply.h
1 // See LICENSE for license details.
2
3 //**************************************************************************
4 // Software multiply function
5 //--------------------------------------------------------------------------
6
7 // Simple C version
8 int multiply(int x, int y);
9
10 // Simple assembly version
11 int multiply_asm(int x, int y);