diff options
author | Atish Patra <atish.patra@wdc.com> | 2020-05-09 16:47:25 -0700 |
---|---|---|
committer | Anup Patel <anup@brainfault.org> | 2020-05-10 09:59:24 +0530 |
commit | 13ca20d8df3b402d12e5701c651a53409db167d8 (patch) | |
tree | c7afbf73b0047ab7534379f64f465c86ea1fcea6 /lib/sbi/objects.mk | |
parent | aef9a60d521a7810557d1caf826311bc349691ac (diff) |
lib: Create a separate math helper function file
There may be few common mathematics helper functions which can be used
anywhere in OpenSBI project.
Add a separate math helper function file to add these functions.
Signed-off-by: Atish Patra <atish.patra@wdc.com>
Reviewed-by: Anup Patel <anup.patel@wdc.com>
Diffstat (limited to 'lib/sbi/objects.mk')
-rw-r--r-- | lib/sbi/objects.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/sbi/objects.mk b/lib/sbi/objects.mk index 190ee12..31aaad5 100644 --- a/lib/sbi/objects.mk +++ b/lib/sbi/objects.mk @@ -24,6 +24,7 @@ libsbi-objs-y += sbi_ecall_vendor.o libsbi-objs-y += sbi_emulate_csr.o libsbi-objs-y += sbi_fifo.o libsbi-objs-y += sbi_hart.o +libsbi-objs-y += sbi_math.o libsbi-objs-y += sbi_hfence.o libsbi-objs-y += sbi_hsm.o libsbi-objs-y += sbi_illegal_insn.o |