aboutsummaryrefslogtreecommitdiff
path: root/benchmarks/multiply/multiply.h
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/multiply/multiply.h')
-rw-r--r--benchmarks/multiply/multiply.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/benchmarks/multiply/multiply.h b/benchmarks/multiply/multiply.h
new file mode 100644
index 0000000..6d27795
--- /dev/null
+++ b/benchmarks/multiply/multiply.h
@@ -0,0 +1,9 @@
+//**************************************************************************
+// Software multiply function
+//--------------------------------------------------------------------------
+
+// Simple C version
+int multiply(int x, int y);
+
+// Simple assembly version
+int multiply_asm(int x, int y);