代码搜索:Bit
找到约 10,000 项符合「Bit」的源代码
代码结果 10,000
www.eeworm.com/read/466198/7040886
4bit-count
www.eeworm.com/read/466057/7043610
lst 4bit.lst
ASEM-51 V1.3 Copyright (c) 2002 by W.W. Heinz PAGE 1
MCS-51 Family Macro Assembler A S E M - 5 1
www.eeworm.com/read/466057/7043611
hex 4bit.hex
:0300000002016B8F
:1000300000000000000022C000782ED9FED000226F
:10004000C000C001781E79FFD9FED8FAD001D000D7
:1000500022C000C001C0027A0A796478FFD8FED9B4
:10006000FADAF6D002D001D00022C0E0C000781148
:
www.eeworm.com/read/466057/7043612
asm 4bit.asm
;------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
;Author: Ashwin.V
www.eeworm.com/read/466057/7043689
hex 8bit.hex
:03000000020119E1
:10003000C000782ED9FED00022C000C001781E7901
:10004000FFD9FED8FAD001D00022C000C001C00202
:100050007A0A796478FFD8FED9FADAF6D002D001AC
:10006000D00022C0E0C0007811740093D805D00001
:
www.eeworm.com/read/466057/7043690
lst 8bit.lst
ASEM-51 V1.3 Copyright (c) 2002 by W.W. Heinz PAGE 1
MCS-51 Family Macro Assembler A S E M - 5 1
www.eeworm.com/read/466057/7043692
asm 8bit.asm
;------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
;Author: Ashwin.V
www.eeworm.com/read/464869/7061550
v switcher_bit .v
module switcher_bit(din1,din2,sel,dout);
input din1,din2;
input sel;
output dout;
assign dout=(sel==0)?din1:din2;
endmodule