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. // vertical blank, sync and window. H is period of horizontal sync;
  6. // from the last non-blanked line:
  7. // 3H is pre-blank,
  8. // 2.xxH is vertical sync (slightly more than 2H, all hsync edges preserved)
  9. // vblank is total of 25H
  10.  
  11. module syncv(
  12.  
  13.         input clk,
  14.  
  15.         input hsync_start, // synchronizing signal
  16.         input line_start,  // to end vsync some time after hsync has ended
  17.  
  18.         input hint_start,
  19.  
  20.  
  21.         output reg vblank,
  22.         output reg vsync,
  23.  
  24.         output reg int_start, // one-shot positive pulse marking beginning of INT for Z80
  25.  
  26.         output reg vpix // vertical picture marker: active when there is line with pixels in it, not just a border. changes with hsync edge
  27. );
  28.  
  29.  
  30.  
  31.  
  32.  
  33.         localparam VBLNK_BEG = 9'd00;
  34.         localparam VSYNC_BEG = 9'd08;
  35.         localparam VSYNC_END = 9'd11;
  36.         localparam VBLNK_END = 9'd32;
  37.  
  38.         localparam INT_BEG = 9'd0;   // 9'd16 Scorpion 9'd0 pentagon
  39.  
  40.         localparam VPIX_BEG = 9'd080;//9'd064;
  41.         localparam VPIX_END = 9'd272;//9'd256;
  42.  
  43.         localparam VPERIOD = 9'd320; // 320 pentagono foreva! 9d'312 Scorpion foreva!!!
  44.  
  45.  
  46.         reg [8:0] vcount;
  47.  
  48.  
  49.  
  50.  
  51.         initial
  52.         begin
  53.                 vcount = 9'd0;
  54.                 vsync = 1'b0;
  55.                 vblank = 1'b0;
  56.                 vpix = 1'b0;
  57.                 int_start = 1'b0;
  58.         end
  59.  
  60.         always @(posedge clk) if( hsync_start )
  61.         begin
  62.                 if( vcount==(VPERIOD-9'd1) )
  63.                         vcount <= 9'd0;
  64.                 else
  65.                         vcount <= vcount + 9'd1;
  66.         end
  67.  
  68.  
  69.  
  70.         always @(posedge clk) if( hsync_start )
  71.         begin
  72.                 if( vcount==VBLNK_BEG )
  73.                         vblank <= 1'b1;
  74.                 else if( vcount==VBLNK_END )
  75.                         vblank <= 1'b0;
  76.         end
  77.  
  78.  
  79.         always @(posedge clk)
  80.         begin
  81.                 if( (vcount==VSYNC_BEG) && hsync_start )
  82.                         vsync <= 1'b1;
  83.                 else if( (vcount==VSYNC_END) && line_start  )
  84.                         vsync <= 1'b0;
  85.         end
  86.  
  87.  
  88.         always @(posedge clk)
  89.         begin
  90.                 if( (vcount==INT_BEG) && hint_start )
  91.                         int_start <= 1'b1;
  92.                 else
  93.                         int_start <= 1'b0;
  94.         end
  95.  
  96.  
  97.  
  98.         always @(posedge clk) if( hsync_start )
  99.         begin
  100.                 if( vcount==VPIX_BEG )
  101.                         vpix <= 1'b1;
  102.                 else if( vcount==VPIX_END )
  103.                         vpix <= 1'b0;
  104.         end
  105.  
  106.  
  107. endmodule
  108.  
  109.