最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

HDLBits (19) — 更多擴(kuò)展

2022-01-25 01:06 作者:僚機(jī)Wingplane  | 我要投稿

本題鏈接:

https://hdlbits.01xz.net/wiki/Vector5

給定五個(gè) 1 位信號(hào)(a、b、c、d 和 e),25 位輸出向量是計(jì)算兩組 25 位輸出向量按位成對(duì)比較的結(jié)果。 如果被比較的兩位相等,則輸出應(yīng)為 1。

out[24] = ~a ^ a; ? // a == a, so out[24] is always 1.
out[23] = ~a ^ b;
out[22] = ~a ^ c;
...
out[ 1] = ~e ^ d;
out[ 0] = ~e ^ e;

如圖所示,使用擴(kuò)展運(yùn)算符和拼接運(yùn)算符可以更輕松地完成此操作。?

上面的向量是重復(fù)?5?次同一個(gè)輸入信號(hào)后按次序拼接,下面的向量是按次序拼接輸入信號(hào)后重復(fù)5次

題目

module top_module (
 ? ?input a, b, c, d, e,
 ? ?output [24:0] out );

答案

module top_module (
 ? ?input a, b, c, d, e,
 ? ?output [24:0] out );
 ? ?assign out = ~{{5{a}}, {5}, {5{c}}, {5s0sssss00s}, {5{e}}} ^ {5{a, b, c, d, e}};
endmodule
module top_module (
	input a, b, c, d, e,
	output [24:0] out
);

	wire [24:0] top, bottom;
	assign top ? ?= { {5{a}}, {5}, {5{c}}, {5s0sssss00s}, {5{e}} };
	assign bottom = {5{a,b,c,d,e}};
	assign out = ~top ^ bottom;
endmodule


HDLBits (19) — 更多擴(kuò)展的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
广德县| 商都县| 福海县| 丽水市| 南雄市| 南郑县| 思南县| 郴州市| 阳山县| 威远县| 上栗县| 大余县| 新建县| 兴国县| 涡阳县| 集贤县| 芮城县| 定兴县| 车致| 疏勒县| 蕲春县| 天峨县| 大英县| 辽阳市| 行唐县| 定边县| 格尔木市| 玉山县| 偃师市| 富裕县| 安西县| 建德市| 突泉县| 潞城市| 南华县| 宝坻区| 冕宁县| 河北省| 遵义市| 泾川县| 广州市|