URL
https://opencores.org/ocsvn/fft2_size/fft2_size/trunk
Subversion Repositories fft2_size
[/] [fft2_size/] [fft_int_size/] [yx_addr.sv] - Rev 7
Compare with Previous | Blame | View Log
`ifndef _yx_addr_`define _yx_addr_module yx_addr #(WIDTH = 9, POW = 2)(input [WIDTH-1:0] cnt,output [WIDTH-1:0] yx_cnt);generateif (POW < 1)beginassign yx_cnt = cnt;endelse if (POW == 1)beginassign yx_cnt = {cnt[WIDTH-1:POW], !cnt[0]};endelse if (POW == WIDTH)beginassign yx_cnt = {!cnt[0], cnt[POW-1:1]};endelsebeginassign yx_cnt = {cnt[WIDTH-1:POW], !cnt[0], cnt[POW-1:1]};endendgenerateendmodule :yx_addr`endif
