Remove vestigial j instruction test; improve jal test
[riscv-tests.git] / benchmarks / median / median.h
1 // See LICENSE for license details.
2
3 //**************************************************************************
4 // Median filters
5 //--------------------------------------------------------------------------
6
7 // Simple C version
8 void median( int n, int input[], int results[] );
9
10 // Simple assembly version
11 void median_asm( int n, int input[], int results[] );