LogIn E-mail
¼³°èÀ̾߱â
YCbCr2RGB.v
# 79 JMJS    10.5.12 15:18

`timescale 1ns/10ps

module YCbCr2RGB (        Red,Green,Blue,oDVAL,
                                        iY,iCb,iCr,iDVAL,
                                        iRESET,iCLK);
//        Input
input [7:0] iY,iCb,iCr;
input iDVAL,iRESET,iCLK;
//        Output
output [9:0] Red,Green,Blue;
output reg        oDVAL;
//        Internal Registers/Wires
reg [9:0] oRed,oGreen,oBlue;
reg        [3:0] oDVAL_d;
reg [11:0] X_OUT,Y_OUT,Z_OUT;
wire [27:0] X,Y,Z;

assign        Red  =        oRed;
assign        Green=        oGreen;
assign        Blue =        oBlue;

always@(posedge iCLK)
begin
        if(iRESET)
        begin
                oDVAL<=0;
                oDVAL_d<=0;
                oRed<=0;
                oGreen<=0;
                oBlue<=0;
        end
        else
        begin
                // Red
                if(X_OUT[11])
                oRed<=0;
                else if(X_OUT[10:0]>1023)
                oRed<=1023;
                else
                oRed<=X_OUT[9:0];
                // Green
                if(Y_OUT[11])
                oGreen<=0;
                else if(Y_OUT[10:0]>1023)
                oGreen<=1023;
                else
                oGreen<=Y_OUT[9:0];
                // Blue
                if(Z_OUT[11])
                oBlue<=0;
                else if(Z_OUT[10:0]>1023)
                oBlue<=1023;
                else
                oBlue<=Z_OUT[9:0];
                // Control
                {oDVAL,oDVAL_d}<={oDVAL_d,iDVAL};
        end
end

always@(posedge iCLK)
begin
        if(iRESET)
        begin
                X_OUT<=0;
                Y_OUT<=0;
                Z_OUT<=0;
        end
        else
        begin
                X_OUT<=( ( X - 105555 ) >>7 ) + 1;
                Y_OUT<=( ( Y + 64218  ) >>7 ) + 1;
                Z_OUT<=( ( Z - 131072 ) >>7 ) + 1;                        
        end
end

//        Y                551,                0,                        756
MAC_3 u0(        iY,                        iCb,                iCr,
                        18'h00227,        18'h00000,        18'h002F4,
                        X,                iRESET,                iCLK);
//        Cb                551,                -186,                -385
MAC_3 u1(        iY,                        iCb,                iCr,
                        18'h00227,        18'h3FF46,        18'h3FE7F,
                        Y,                iRESET,                iCLK);
//        Cr                551,                955,                0
MAC_3 u2(        iY,                        iCb,                iCr,
                        18'h00227,        18'h003BB,        18'h00000,
                        Z,                iRESET,                iCLK);

endmodule

÷ºÎÆÄÀÏ: YCbCr2RGB.v
°Ô½Ã¹°: 96 °Ç, ÇöÀç: 1 / 1 ÂÊ
¹øÈ£ Á¦       ¸ñ ÀÛ¼ºÀÚ µî·ÏÀÏ ¹æ¹®
98  interface JMJS 25.1.20 303
97  test plusargs value plusargs JMJS 24.9.5 339
96  color text JMJS 24.7.13 366
95  draw_hexa.v JMJS 10.6.17 2532
94  jmjsxram3.v JMJS 10.4.9 2390
93  Verilog document JMJS 11.1.24 2995
92  [verilog]o=(c1)? (c2)? 0:1 : (c3)? 2:3; JMJS 09.3.31 2574
91  [verilog]forever, repeat, strobe, realtime, ... JMJS 09.7.6 4001
90  gtkwave PC version JMJS 09.3.30 2375
89  ncsim option example JMJS 08.12.1 4748
88  [¿µ»ó]keywords for web search JMJS 08.12.1 2347
87  [Verilog]fdisplay fopen fscanf JMJS 11.1.24 6537
86  ncverilog option example JMJS 10.6.8 8201
85  [Verilog]Latch example JMJS 08.12.1 2943
84  Pad verilog example JMJS 01.3.16 4884
83  [ModelSim] vector JMJS 01.3.16 2559
82  RTL Code ºÐ¼®¼ø¼­ JMJS 09.4.29 2822
81  [temp]PIPE JMJS 08.10.2 2213
80  [temp]always-forever ¹«ÇÑ·çÇÁ JMJS 08.10.2 2294
79  YCbCr2RGB.v JMJS 10.5.12 2490
78  [VHDL]rom64x8 JMJS 09.3.27 2053
77  [function]vector_compare JMJS 02.6.19 1954
76  [function]vector2integer JMJS 02.6.19 2136
75  [VHDL]ram8x4x8 JMJS 08.12.1 1904
74  [¿¹]shift JMJS 02.6.19 2341
73  test JMJS 09.7.20 2172
72  test JMJS 09.7.20 1781
71  test JMJS 09.7.20 1888
70  test JMJS 09.7.20 1983
69  test JMJS 09.7.20 2029
68  test JMJS 09.7.20 1965
67  test JMJS 09.7.20 1897
66  test JMJS 09.7.20 1847
65  test JMJS 09.7.20 1956
64  test JMJS 09.7.20 2159
63  test JMJS 09.7.20 2195
62  test JMJS 09.7.20 2099
61  VHDLÀÇ ¿¬»êÀÚ ¿ì¼±¼øÀ§ JMJS 09.7.20 3884
60  test JMJS 09.7.20 1719
59  test JMJS 09.7.20 2002
58  test JMJS 09.7.20 1926
57  test JMJS 09.7.20 1895
56  test JMJS 09.7.20 1934
55  verilog Çаú »ùÇð­ÀÇ JMJS 16.5.30 2421
54  [verilog]create_generated_clock JMJS 15.4.28 2399
53  [Verilog]JDIFF JMJS 14.7.4 1749
52  [verilog]parameter definition JMJS 14.3.5 2041
51  [verilog]sformat fopen fscanf fwrite fclose JMJS 12.1.31 4975
50  Verilog File I/0,Verilog file handling JMJS 12.1.30 2666
49  Verdi JMJS 10.4.22 3516
48  draw hexa JMJS 10.4.9 2049
47  asfifo - Async FIFO JMJS 10.4.8 1910
46  VHDLÀ» ÀÌ¿ëÇÑ È¸·Î¼³°èÀÇ ÀåÁ¡ JMJS 02.3.14 3583
45  synplify batch JMJS 10.3.8 2745
44  ÀüÀڽðè Type A JMJS 08.11.28 2252
43  I2C Webpage JMJS 08.2.25 2088
42  PC¿¡¼­ °£´ÜÈ÷ Verilog ½ÇÇàÇØº¸±â (Icarus Verilog) JMJS 13.1.14 6223
41  [Verilog]vstring JMJS 17.9.27 2304
40  Riviera Simple Case JMJS 09.4.29 3393
39  [VHDL]DES Example JMJS 07.6.15 3242
38  [verilog]RAM example JMJS 09.6.5 3017
37  ROM example [VerilogHDL, RTL] JMJS 04.5.27 2264
36  Jamie's VHDL Handbook JMJS 08.11.28 2931
35  Dualport RAM example [VerilogHDL, RTL] JMJS 04.5.27 3532
34  RTL Job JMJS 09.4.29 2442
33  [VHDL]type example - package TYPES JMJS 06.2.2 1955
32  [verilog]`define `ifdef `elsif `else `endif ... JMJS 10.5.11 9600
30  [verilog]array_module JMJS 05.12.8 2491
29  [verilog-2001]generate JMJS 05.12.8 3638
28  protected JMJS 05.11.18 2291
27  design¿¡ latch°¡ ÀÖÀ¸¸é ¾ÈµÇ³ª¿ä? JMJS 09.7.20 3061
26  busÀÇ µ¥ÀÌŸ¸¦ °¢ bitº°·Î Ãâ·ÂÇÏ´Â ¹æ¹ýÀº? JMJS 04.11.9 2054
25  component¸¦ »ý¼ºÇؼ­ ´Ù¸¥ °÷¿¡¼­ È£ÃâÇÏ´Â ¹æ¹ý JMJS 04.11.4 2670
23  Array Of Array JMJS 04.8.16 2197
22  dumpfile, dumpvars JMJS 04.7.19 3877
21  Vending Machine Jamie 02.12.16 10311
20  Mini Vending Machine1 Jamie 02.12.10 7186
19  Mini Vending Machine Jamie 02.12.6 10031
18  Key Jamie 02.11.29 5208
17  Stop Watch Jamie 02.11.25 5802
16  Mealy Machine Jamie 02.8.29 6948
15  Moore Machine Jamie 02.8.29 18282
14  Up Down Counter Jamie 02.8.29 4307
13  Up Counter Jamie 02.8.29 3003
12  Edge Detecter Jamie 02.8.29 3224
11  Concept4 Jamie 02.8.28 2220
10  Concept3 Jamie 02.8.28 2289
9  Concept2_1 Jamie 02.8.28 2181
8  Concept2 Jamie 02.8.28 2270
7  Concept1 Jamie 02.8.26 2347
6  Tri State Buffer Jamie 02.8.26 3835
5  8x3 Encoder Jamie 02.8.28 4424
4  3x8 Decoder Jamie 02.8.28 4049
3  4bit Comparator Jamie 02.8.26 3437
2  °¡À§ ¹ÙÀ§ º¸ °ÔÀÓ Jamie 02.8.26 5643
1  Two Input Logic Jamie 02.8.26 2685
[1]