代码搜索:mult

找到约 6,230 项符合「mult」的源代码

代码结果 6,230
www.eeworm.com/read/302514/13833441

v mult_for.v

module mult_for(outcome,a,b); parameter size=8; input[size:1] a,b; output[2*size:1] outcome; reg[2*size:1] outcome; integer i; always @(a or b) begin outcome=0; for(i=1; i
www.eeworm.com/read/302514/13833536

v mult.v

module mult(outcome,a,b); parameter size=8; input[size:1] a,b; output[2*size:1] outcome; assign outcome=a*b; endmodule
www.eeworm.com/read/301795/13848313

vhd mult.vhd

-- MULTIPLEXER TO CHOOSE BETWEEN CLOCK AND C0 library ieee ; use ieee.std_logic_1164.all ; use ieee.std_logic_arith.all ; use work.butter_lib.all ; use ieee.std_logic_unsigned.all ; entity mul
www.eeworm.com/read/301636/13853331

vhd mult.vhd

-- MULTIPLEXER TO CHOOSE BETWEEN CLOCK AND C0 library ieee ; use ieee.std_logic_1164.all ; use ieee.std_logic_arith.all ; use work.butter_lib.all ; use ieee.std_logic_unsigned.all ; entity mul
www.eeworm.com/read/132821/5909223

el mult.el

(progn (load "../g1") (load "../l1") (load "../b1") (load "m1") (load "c1") (load "compressor") (load "components") (setq b 128) (setq w 4) (setq h (gen-tree b w ))
www.eeworm.com/read/131315/5944553

c mult.c

/*- * Copyright (c) 1979, 1993 * The Regents of the University of California. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are perm
www.eeworm.com/read/122504/6065319

java mult.java

package uk.ac.leeds.ccg.raster; public class mult implements RasterOp{ public final double calc(double a,double b){ return (a*b); } }
www.eeworm.com/read/101082/6242824

c mult.c

/* Copyright (c) 1979 Regents of the University of California */ static char sccsid[] = "@(#)MULT.c 1.2 3/7/81"; long * MULT(result0, left, right, siz) long *result0; register long *left; regis
www.eeworm.com/read/101082/6244267

c mult.c

/* @(#)mult.c 4.1 12/25/82 */ #include mult(a,b,c) struct mint *a,*b,*c; { struct mint x,y,z; int sign; sign = 1; x.val=a->val; y.val=b->val; z.len=0; if(a->lenlen; s
www.eeworm.com/read/252441/6298468

v mult_for.v

module mult_for(outcome,a,b); parameter size=8; input[size:1] a,b; output[2*size:1] outcome; reg[2*size:1] outcome; integer i; always @(a or b) begin outcome=0; for(i=1; i