title Module from library HIFLOAT_4 : LBMUL name ('LBMUL') maclib baselib.lib ; Multiply floating point numbers ; Copyright (C) Werner Cirsovius ; Hohe Weide 44 ; D-20253 Hamburg ; Tel.: +49-40-4223247 ; Version 1.0 January 1989 ; ENTRY Reg pair BC points to first number, pair DE points to ; second number and reg pair HL points to product ; EXIT Result filled with product entry flmul extrn ?flmul,@oper2 flmul: ld ix,?flmul jp @oper2 end