代码搜索:乘法运算
找到约 9,367 项符合「乘法运算」的源代码
代码结果 9,367
www.eeworm.com/read/370579/9595119
txt 布斯乘法器.txt
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHDL-93
www.eeworm.com/read/170598/9797242
txt 布斯乘法器.txt
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHDL-93
www.eeworm.com/read/415351/11075531
txt 布斯乘法器.txt
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHDL-93
www.eeworm.com/read/415351/11075605
txt 布斯乘法器.txt
-- Booth Multiplier
-- This file contains all the entity-architectures for a complete
-- k-bit x k-bit Booth multiplier.
-- the design makes use of the new shift operators available in the VHDL-93
www.eeworm.com/read/146711/12616945
cpp 最小二乘法.cpp
#include
#include
void main()
{
int i;
float *a;
float x[16]={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16};
float y[16]={4.00,6.40,8.00,8.80,9.22,9.50,9.70,9.86,
10.00,1
www.eeworm.com/read/146455/12647041
txt 3.3.2双字节乘法.txt
DBCDM:
MOV R2,#2
ADD A,R0
MOV R0,A
MOV R3,#0
LOOP:
DEC R0
MOV A,@R0
SWAP A
MOV @R0,A
MOV A,R3
XCHD A,@R0
MOV R3,A
DJNZ R2,LOOP
RET
www.eeworm.com/read/300272/13922480
asm 2字节乘法.asm
$MOD841
MOV R3,#30H
MOV R2,#0EFH
MOV R1,#0FFH
MOV R0,#45H
MOV 40H,#00H
MOV 41H,#00H
MOV 42H,#00H
MOV 43H,#00H
;--------------
MOV A,R2
MOV B,R0
MUL AB
MOV 40H,A
MOV 41H,B
;