From: Andrey Miroshnikov Date: Mon, 4 Jul 2022 12:59:34 +0000 (+0100) Subject: Added fixedshift X-Git-Tag: opf_rfc_ls005_v1~1351 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=01840c35bfeed5beb3ab1b31d3f0f5d670391dac;p=libreriscv.git Added fixedshift --- diff --git a/openpower/Makefile b/openpower/Makefile index b5474e298..0d5cfd162 100755 --- a/openpower/Makefile +++ b/openpower/Makefile @@ -12,6 +12,7 @@ SOURCE_TEX := tex_out/remap.tex tex_out/bitmanip.tex tex_out/vector_ops.tex \ tex_out/fcvt.tex tex_out/fclass.tex \ tex_out/int_fp_mv.tex tex_out/av_opcodes.tex \ tex_out/big_integer.tex \ + tex_out/pseudocode_fixedshift.tex \ tex_out/pseudocode_svfparith.tex \ tex_out/pseudocode_fixedarith.tex \ tex_out/pseudocode_fixedlogical.tex \ @@ -19,6 +20,7 @@ SOURCE_TEX := tex_out/remap.tex tex_out/bitmanip.tex tex_out/vector_ops.tex \ tex_out/big_integer_analysis.tex \ tex_out/vector_isas.tex +# Does this umbrella rule need to be modified? tex: $(SOURCE_TEX) mkdir -p tex_out @@ -195,6 +197,13 @@ tex_out/big_integer.tex : sv/biginteger.mdwn --filter pandoc_img.py \ -N -o tex_out/big_integer.tex sv/biginteger.mdwn +tex_out/pseudocode_fixedshift.tex : ../../openpower-isa/openpower/isa/fixedshift.mdwn + mkdir -p tex_out + pandoc -f markdown -t latex --top-level-division=section \ + --filter pandoc_img.py \ + -N -o tex_out/pseudocode_fixedshift.tex \ + ../../openpower-isa/openpower/isa/fixedshift.mdwn + tex_out/svp64_appendix.tex: sv/svp64/appendix.mdwn mkdir -p tex_out ./mdwn_inline.py sv/svp64/appendix.mdwn tex_out/appendix.mdwn