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 296
97  test plusargs value plusargs JMJS 24.9.5 333
96  color text JMJS 24.7.13 353
95  draw_hexa.v JMJS 10.6.17 2528
94  jmjsxram3.v JMJS 10.4.9 2366
93  Verilog document JMJS 11.1.24 2977
92  [verilog]o=(c1)? (c2)? 0:1 : (c3)? 2:3; JMJS 09.3.31 2546
91  [verilog]forever, repeat, strobe, realtime, ... JMJS 09.7.6 3973
90  gtkwave PC version JMJS 09.3.30 2342
89  ncsim option example JMJS 08.12.1 4715
88  [¿µ»ó]keywords for web search JMJS 08.12.1 2318
87  [Verilog]fdisplay fopen fscanf JMJS 11.1.24 6528
86  ncverilog option example JMJS 10.6.8 8171
85  [Verilog]Latch example JMJS 08.12.1 2911
84  Pad verilog example JMJS 01.3.16 4850
83  [ModelSim] vector JMJS 01.3.16 2533
82  RTL Code ºÐ¼®¼ø¼­ JMJS 09.4.29 2799
81  [temp]PIPE JMJS 08.10.2 2186
80  [temp]always-forever ¹«ÇÑ·çÇÁ JMJS 08.10.2 2272
79  YCbCr2RGB.v JMJS 10.5.12 2458
78  [VHDL]rom64x8 JMJS 09.3.27 2026
77  [function]vector_compare JMJS 02.6.19 1928
76  [function]vector2integer JMJS 02.6.19 2112
75  [VHDL]ram8x4x8 JMJS 08.12.1 1895
74  [¿¹]shift JMJS 02.6.19 2319
73  test JMJS 09.7.20 2137
72  test JMJS 09.7.20 1778
71  test JMJS 09.7.20 1858
70  test JMJS 09.7.20 1954
69  test JMJS 09.7.20 1995
68  test JMJS 09.7.20 1931
67  test JMJS 09.7.20 1869
66  test JMJS 09.7.20 1821
65  test JMJS 09.7.20 1923
64  test JMJS 09.7.20 2134
63  test JMJS 09.7.20 2160
62  test JMJS 09.7.20 2076
61  VHDLÀÇ ¿¬»êÀÚ ¿ì¼±¼øÀ§ JMJS 09.7.20 3862
60  test JMJS 09.7.20 1714
59  test JMJS 09.7.20 1960
58  test JMJS 09.7.20 1901
57  test JMJS 09.7.20 1869
56  test JMJS 09.7.20 1910
55  verilog Çаú »ùÇð­ÀÇ JMJS 16.5.30 2419
54  [verilog]create_generated_clock JMJS 15.4.28 2388
53  [Verilog]JDIFF JMJS 14.7.4 1718
52  [verilog]parameter definition JMJS 14.3.5 2015
51  [verilog]sformat fopen fscanf fwrite fclose JMJS 12.1.31 4950
50  Verilog File I/0,Verilog file handling JMJS 12.1.30 2660
49  Verdi JMJS 10.4.22 3482
48  draw hexa JMJS 10.4.9 2028
47  asfifo - Async FIFO JMJS 10.4.8 1898
46  VHDLÀ» ÀÌ¿ëÇÑ È¸·Î¼³°èÀÇ ÀåÁ¡ JMJS 02.3.14 3573
45  synplify batch JMJS 10.3.8 2713
44  ÀüÀڽðè Type A JMJS 08.11.28 2225
43  I2C Webpage JMJS 08.2.25 2062
42  PC¿¡¼­ °£´ÜÈ÷ Verilog ½ÇÇàÇØº¸±â (Icarus Verilog) JMJS 13.1.14 6213
41  [Verilog]vstring JMJS 17.9.27 2279
40  Riviera Simple Case JMJS 09.4.29 3368
39  [VHDL]DES Example JMJS 07.6.15 3209
38  [verilog]RAM example JMJS 09.6.5 2981
37  ROM example [VerilogHDL, RTL] JMJS 04.5.27 2244
36  Jamie's VHDL Handbook JMJS 08.11.28 2901
35  Dualport RAM example [VerilogHDL, RTL] JMJS 04.5.27 3510
34  RTL Job JMJS 09.4.29 2408
33  [VHDL]type example - package TYPES JMJS 06.2.2 1952
32  [verilog]`define `ifdef `elsif `else `endif ... JMJS 10.5.11 9577
30  [verilog]array_module JMJS 05.12.8 2470
29  [verilog-2001]generate JMJS 05.12.8 3605
28  protected JMJS 05.11.18 2256
27  design¿¡ latch°¡ ÀÖÀ¸¸é ¾ÈµÇ³ª¿ä? JMJS 09.7.20 3033
26  busÀÇ µ¥ÀÌŸ¸¦ °¢ bitº°·Î Ãâ·ÂÇÏ´Â ¹æ¹ýÀº? JMJS 04.11.9 2028
25  component¸¦ »ý¼ºÇؼ­ ´Ù¸¥ °÷¿¡¼­ È£ÃâÇÏ´Â ¹æ¹ý JMJS 04.11.4 2656
23  Array Of Array JMJS 04.8.16 2174
22  dumpfile, dumpvars JMJS 04.7.19 3842
21  Vending Machine Jamie 02.12.16 10285
20  Mini Vending Machine1 Jamie 02.12.10 7166
19  Mini Vending Machine Jamie 02.12.6 10013
18  Key Jamie 02.11.29 5183
17  Stop Watch Jamie 02.11.25 5791
16  Mealy Machine Jamie 02.8.29 6926
15  Moore Machine Jamie 02.8.29 18262
14  Up Down Counter Jamie 02.8.29 4277
13  Up Counter Jamie 02.8.29 2973
12  Edge Detecter Jamie 02.8.29 3195
11  Concept4 Jamie 02.8.28 2215
10  Concept3 Jamie 02.8.28 2264
9  Concept2_1 Jamie 02.8.28 2159
8  Concept2 Jamie 02.8.28 2246
7  Concept1 Jamie 02.8.26 2344
6  Tri State Buffer Jamie 02.8.26 3805
5  8x3 Encoder Jamie 02.8.28 4410
4  3x8 Decoder Jamie 02.8.28 4036
3  4bit Comparator Jamie 02.8.26 3414
2  °¡À§ ¹ÙÀ§ º¸ °ÔÀÓ Jamie 02.8.26 5638
1  Two Input Logic Jamie 02.8.26 2655
[1]