Subversion Repositories pentevo

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. `include "../include/tune.v"
  2.  
  3. // PentEvo project (c) NedoPC 2008-2009
  4. //
  5. // generates horizontal sync, blank and video start strobe, horizontal window
  6. //
  7. // =\                  /=========||...
  8. // ==\                /==========||...
  9. // ====---     -------===========||...
  10. //    |  \   / |      |
  11. //    |   ---  |      |
  12. //    |  |   | |      |
  13. //    0  t1  | t3     t4
  14. //           t2
  15. // at 0, video ends and blank begins
  16. //    t1 = 10 clocks (@7MHz), sync begins
  17. // t2-t1 = 33 clocks
  18. // t3-t2 = 41 clocks, then video starts
  19. //
  20. // repetition period = 448 clocks
  21.  
  22.  
  23. module synch(
  24.  
  25.         input clk,
  26.  
  27.         input init, // one-pulse strobe read at cend==1, initializes phase
  28.                     // this is mainly for phasing with CPU clock 3.5/7 MHz
  29.  
  30.         input cend, // working strobes (7MHz)
  31.         input pre_cend,
  32.  
  33.  
  34.         output reg hblank,
  35.         output reg hsync,
  36.  
  37.         output reg line_start,  // 1 video cycle prior to actual start of visible line
  38.         output reg hsync_start, // 1 cycle prior to beginning of hsync: used in frame sync/blank generation
  39.                                 // these signals coincide with cend
  40.  
  41.         output reg hint_start, // horizontal position of INT start, for fine tuning
  42.  
  43.         output reg scanin_start,
  44.  
  45.         output reg hpix // marks gate during which pixels are outting
  46.  
  47. );
  48.  
  49.  
  50.         localparam HBLNK_BEG = 9'd00;
  51.         localparam HSYNC_BEG = 9'd10;
  52.         localparam HSYNC_END = 9'd43;
  53.         localparam HBLNK_END = 9'd88;
  54.  
  55.         localparam HPIX_BEG = 9'd140; // 52 cycles from line_start to pixels beginning
  56.         localparam HPIX_END = 9'd396;
  57.  
  58.         localparam SCANIN_BEG = 9'd88; // when scan-doubler starts pixel storing
  59.  
  60.         localparam HINT_BEG = 9'd443;
  61.  
  62.  
  63.         localparam HPERIOD = 9'd448;
  64.  
  65.  
  66.         reg [8:0] hcount;
  67.  
  68.  
  69.  
  70.  
  71.         initial
  72.         begin
  73.                 hcount = 9'd0;
  74.                 hblank = 1'b0;
  75.                 hsync = 1'b0;
  76.                 line_start = 1'b0;
  77.                 hsync_start = 1'b0;
  78.                 hpix = 1'b0;
  79.         end
  80.  
  81.         always @(posedge clk) if( cend )
  82.         begin
  83.             if( init || (hcount==(HPERIOD-9'd1)) )
  84.                 hcount <= 9'd0;
  85.             else
  86.                 hcount <= hcount + 9'd1;
  87.         end
  88.  
  89.  
  90.  
  91.         always @(posedge clk) if( cend )
  92.         begin
  93.                 if( hcount==HBLNK_BEG )
  94.                         hblank <= 1'b1;
  95.                 else if( hcount==HBLNK_END )
  96.                         hblank <= 1'b0;
  97.  
  98.  
  99.                 if( hcount==HSYNC_BEG )
  100.                         hsync <= 1'b1;
  101.                 else if( hcount==HSYNC_END )
  102.                         hsync <= 1'b0;
  103.         end
  104.  
  105.  
  106.         always @(posedge clk)
  107.         begin
  108.                 if( pre_cend )
  109.                 begin
  110.                         if( hcount==HSYNC_BEG )
  111.                                 hsync_start <= 1'b1;
  112.  
  113.                         if( hcount==HBLNK_END )
  114.                                 line_start <= 1'b1;
  115.  
  116.                         if( hcount==SCANIN_BEG )
  117.                                 scanin_start <= 1'b1;
  118.                 end
  119.                 else
  120.                 begin
  121.                         hsync_start <= 1'b0;
  122.                         line_start <= 1'b0;
  123.                         scanin_start <= 1'b0;
  124.                 end
  125.         end
  126.  
  127.  
  128.         always @(posedge clk)
  129.         begin
  130.                 if( pre_cend && (hcount==HINT_BEG) )
  131.                         hint_start <= 1'b1;
  132.                 else
  133.                         hint_start <= 1'b0;
  134.         end
  135.  
  136.  
  137.         always @(posedge clk) if( cend )
  138.         begin
  139.                 if( hcount==HPIX_BEG )
  140.                         hpix <= 1'b1;
  141.                 else if( hcount==HPIX_END )
  142.                         hpix <= 1'b0;
  143.         end
  144.  
  145.  
  146. endmodule
  147.  
  148.