Arithmetic shift acts as a logical shift, regardless of the signed variable

断了今生、忘了曾经 提交于 2019-12-18 06:14:10

问题


I've got a register declared as so:

logic signed [15:0][2:0][15:0] registers;

When I place a 2's compliment number into the array and arithmetically shift the number, it logical shifts instead:

registers[0][0] = 16'b1000000000000000;
registers[0][0] = registers[0][0]>>>2;

Apparently, the system will logical shift instead of arithmetically shift if the number is not signed. However as you can clearly see, 'registers' is definitely signed.

Does anybody know what I might be missing here?

Thanks!


回答1:


With Verilog, once you take a part-select, the result is unsigned. Use the $signed system task on the part select to make it signed.

res = $signed(registers[0][0]) >>> 2;


来源:https://stackoverflow.com/questions/14197117/arithmetic-shift-acts-as-a-logical-shift-regardless-of-the-signed-variable

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!