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 283
97  test plusargs value plusargs JMJS 24.9.5 325
96  color text JMJS 24.7.13 342
95  draw_hexa.v JMJS 10.6.17 2521
94  jmjsxram3.v JMJS 10.4.9 2335
93  Verilog document JMJS 11.1.24 2951
92  [verilog]o=(c1)? (c2)? 0:1 : (c3)? 2:3; JMJS 09.3.31 2522
91  [verilog]forever, repeat, strobe, realtime, ... JMJS 09.7.6 3949
90  gtkwave PC version JMJS 09.3.30 2316
89  ncsim option example JMJS 08.12.1 4683
88  [¿µ»ó]keywords for web search JMJS 08.12.1 2301
87  [Verilog]fdisplay fopen fscanf JMJS 11.1.24 6519
86  ncverilog option example JMJS 10.6.8 8150
85  [Verilog]Latch example JMJS 08.12.1 2893
84  Pad verilog example JMJS 01.3.16 4815
83  [ModelSim] vector JMJS 01.3.16 2508
82  RTL Code ºÐ¼®¼ø¼­ JMJS 09.4.29 2770
81  [temp]PIPE JMJS 08.10.2 2156
80  [temp]always-forever ¹«ÇÑ·çÇÁ JMJS 08.10.2 2249
79  YCbCr2RGB.v JMJS 10.5.12 2432
78  [VHDL]rom64x8 JMJS 09.3.27 1999
77  [function]vector_compare JMJS 02.6.19 1911
76  [function]vector2integer JMJS 02.6.19 2083
75  [VHDL]ram8x4x8 JMJS 08.12.1 1875
74  [¿¹]shift JMJS 02.6.19 2302
73  test JMJS 09.7.20 2116
72  test JMJS 09.7.20 1773
71  test JMJS 09.7.20 1823
70  test JMJS 09.7.20 1927
69  test JMJS 09.7.20 1968
68  test JMJS 09.7.20 1907
67  test JMJS 09.7.20 1834
66  test JMJS 09.7.20 1800
65  test JMJS 09.7.20 1897
64  test JMJS 09.7.20 2108
63  test JMJS 09.7.20 2131
62  test JMJS 09.7.20 2053
61  VHDLÀÇ ¿¬»êÀÚ ¿ì¼±¼øÀ§ JMJS 09.7.20 3845
60  test JMJS 09.7.20 1708
59  test JMJS 09.7.20 1922
58  test JMJS 09.7.20 1877
57  test JMJS 09.7.20 1840
56  test JMJS 09.7.20 1886
55  verilog Çаú »ùÇð­ÀÇ JMJS 16.5.30 2395
54  [verilog]create_generated_clock JMJS 15.4.28 2378
53  [Verilog]JDIFF JMJS 14.7.4 1691
52  [verilog]parameter definition JMJS 14.3.5 1989
51  [verilog]sformat fopen fscanf fwrite fclose JMJS 12.1.31 4927
50  Verilog File I/0,Verilog file handling JMJS 12.1.30 2644
49  Verdi JMJS 10.4.22 3456
48  draw hexa JMJS 10.4.9 2015
47  asfifo - Async FIFO JMJS 10.4.8 1883
46  VHDLÀ» ÀÌ¿ëÇÑ È¸·Î¼³°èÀÇ ÀåÁ¡ JMJS 02.3.14 3554
45  synplify batch JMJS 10.3.8 2687
44  ÀüÀڽðè Type A JMJS 08.11.28 2197
43  I2C Webpage JMJS 08.2.25 2035
42  PC¿¡¼­ °£´ÜÈ÷ Verilog ½ÇÇàÇØº¸±â (Icarus Verilog) JMJS 13.1.14 6187
41  [Verilog]vstring JMJS 17.9.27 2253
40  Riviera Simple Case JMJS 09.4.29 3349
39  [VHDL]DES Example JMJS 07.6.15 3182
38  [verilog]RAM example JMJS 09.6.5 2947
37  ROM example [VerilogHDL, RTL] JMJS 04.5.27 2224
36  Jamie's VHDL Handbook JMJS 08.11.28 2882
35  Dualport RAM example [VerilogHDL, RTL] JMJS 04.5.27 3488
34  RTL Job JMJS 09.4.29 2370
33  [VHDL]type example - package TYPES JMJS 06.2.2 1932
32  [verilog]`define `ifdef `elsif `else `endif ... JMJS 10.5.11 9553
30  [verilog]array_module JMJS 05.12.8 2455
29  [verilog-2001]generate JMJS 05.12.8 3580
28  protected JMJS 05.11.18 2235
27  design¿¡ latch°¡ ÀÖÀ¸¸é ¾ÈµÇ³ª¿ä? JMJS 09.7.20 3013
26  busÀÇ µ¥ÀÌŸ¸¦ °¢ bitº°·Î Ãâ·ÂÇÏ´Â ¹æ¹ýÀº? JMJS 04.11.9 1996
25  component¸¦ »ý¼ºÇؼ­ ´Ù¸¥ °÷¿¡¼­ È£ÃâÇÏ´Â ¹æ¹ý JMJS 04.11.4 2641
23  Array Of Array JMJS 04.8.16 2159
22  dumpfile, dumpvars JMJS 04.7.19 3814
21  Vending Machine Jamie 02.12.16 10255
20  Mini Vending Machine1 Jamie 02.12.10 7145
19  Mini Vending Machine Jamie 02.12.6 9994
18  Key Jamie 02.11.29 5157
17  Stop Watch Jamie 02.11.25 5775
16  Mealy Machine Jamie 02.8.29 6912
15  Moore Machine Jamie 02.8.29 18231
14  Up Down Counter Jamie 02.8.29 4257
13  Up Counter Jamie 02.8.29 2942
12  Edge Detecter Jamie 02.8.29 3170
11  Concept4 Jamie 02.8.28 2201
10  Concept3 Jamie 02.8.28 2247
9  Concept2_1 Jamie 02.8.28 2137
8  Concept2 Jamie 02.8.28 2226
7  Concept1 Jamie 02.8.26 2338
6  Tri State Buffer Jamie 02.8.26 3770
5  8x3 Encoder Jamie 02.8.28 4375
4  3x8 Decoder Jamie 02.8.28 4011
3  4bit Comparator Jamie 02.8.26 3392
2  °¡À§ ¹ÙÀ§ º¸ °ÔÀÓ Jamie 02.8.26 5629
1  Two Input Logic Jamie 02.8.26 2627
[1]