`timescale 1ns / 1ps
module DDC_SINCOS_7S(
input [31: 0] DDC_FSINCOS,
output [15: 0] COS,
output [15: 0] FSIN
);
assign COS = DDC_FSINCOS[15:0];
assign FSIN = DDC_FSINCOS[31:16];
endmodule
`timescale 1ns / 1ps
module DDC_SINCOS_7S(
input [31: 0] DDC_FSINCOS,
output [15: 0] COS,
output [15: 0] FSIN
);
assign COS = DDC_FSINCOS[15:0];
assign FSIN = DDC_FSINCOS[31:16];
endmodule