// tbmul8a.e a test circuit for bmul8 // uses add8.e and bmul8.e components // main circuit to test the multiplier // checking is manual via tbmul8a.run signal a[8] <= #h02; // multiplier signal b[8] <= #h02; // multiplicand signal c[16]; // product circuits mul use bmul8(a, b, c); end circuits;