Forum Discussion

mbran15's avatar
mbran15
Icon for New Contributor rankNew Contributor
6 years ago

can i use quick sorting in HDL(Verilog or VHDL)?

module sort_ex ( clk, rst, out); parameter SIZE = 10; input clk, rst; output reg [6:0]out; reg set_end, loop_check, loop_on1, loop_on2, loop_on3; reg [8:0] arr [SIZE-1:0]; reg [8:0] temp; reg ...