diff options
| author | Alejandro Soto <alejandro@34project.org> | 2022-10-18 04:26:27 -0600 |
|---|---|---|
| committer | Alejandro Soto <alejandro@34project.org> | 2022-10-18 04:26:27 -0600 |
| commit | 52f1f2f94bddfb1e73d2c094cfd693916750a467 (patch) | |
| tree | b77f926c15de410183d033f52756eecedb23389c /tb/sim/mult.c | |
| parent | 3a89a79518454e2fc85f38135869dbacf6ac38d2 (diff) | |
Add sim test: mult
Diffstat (limited to '')
| -rw-r--r-- | tb/sim/mult.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tb/sim/mult.c b/tb/sim/mult.c new file mode 100644 index 0000000..531a824 --- /dev/null +++ b/tb/sim/mult.c @@ -0,0 +1,4 @@ +int reset(int a, int b, int c) +{ + return a * b + c; +} |
