Merge pull request #1684 from hansfbaier/retro-vga

Add low res video modes
This commit is contained in:
enjoy-digital 2023-05-10 11:09:46 +02:00 committed by GitHub
commit 82526460e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 0 deletions

View File

@ -28,6 +28,28 @@ vbits = 12
# Video Timings ------------------------------------------------------------------------------------ # Video Timings ------------------------------------------------------------------------------------
video_timings = { video_timings = {
"160x100@60Hz" : {
"pix_clk" : 1.655e6,
"h_active" : 160,
"h_blanking" : 80,
"h_sync_offset" : 8,
"h_sync_width" : 32,
"v_active" : 100,
"v_blanking" : 15,
"v_sync_offset" : 1,
"v_sync_width" : 8,
},
"320x200@60Hz" : {
"pix_clk" : 5.16e6,
"h_active" : 320,
"h_blanking" : 80,
"h_sync_offset" : 8,
"h_sync_width" : 32,
"v_active" : 200,
"v_blanking" : 15,
"v_sync_offset" : 1,
"v_sync_width" : 8,
},
"640x480@60Hz" : { "640x480@60Hz" : {
"pix_clk" : 25.175e6, "pix_clk" : 25.175e6,
"h_active" : 640, "h_active" : 640,