Loading

摘要: ALU实现 Or16way /** * 16-way Or: * out = (in[0] or in[1] or ... or in[15]) */ module Or16Way(input[15:0] in,output out); // your code here wire out1,out 阅读全文
posted @ 2024-12-10 00:05 suehoo 阅读(22) 评论(0) 推荐(0) 编辑