Difference between revisions of "Gameboy VGA adapter"

From Hackerspace ACKspace
Jump to: navigation, search
Line 17: Line 17:
 
As some of you might remember, the biggest problem with the gameboy classic was the unlit screen which caused any form of sunlight to render the screen into a useless plastic mirror.<br>  
 
As some of you might remember, the biggest problem with the gameboy classic was the unlit screen which caused any form of sunlight to render the screen into a useless plastic mirror.<br>  
  
REJOICE! For I have decided to add VGA output to the gameboy so you can play on 21" screens! (TAKE&nbsp;THAT&nbsp;SUN!) No more visibility problems! (Yes you can add LEDs to the back of the screen, stop being so boring&nbsp;:P)<br>  
+
REJOICE! For I have decided to add VGA output to the gameboy so you can play on 21" screens! (TAKE&nbsp;THAT&nbsp;SUN!) No more visibility problems! (Yes you can add LEDs to the back of the screen, stop being so boring&nbsp;:P).
 +
 
 +
Before we get down and dirty, you'll need to be sure that you understand the terms used on this page; [[VGA terminology]].<br>
  
 
<br>  
 
<br>  
  
= Important VGA terms<br>  =
+
= The gameboy<br>  =
 
 
Before we get down and dirty, you'll need to be sure that you understand the following terms on this page; [[VGA_terminology]].<br>
 
 
 
<br>
 
 
 
= F*** TERMS GIVE&nbsp;ME&nbsp;TEH&nbsp;NASTY&nbsp;STUFF<br>  =
 
 
 
Err yeah.<br>
 
  
 
<u>Gameboy specs:</u><br>  
 
<u>Gameboy specs:</u><br>  
Line 41: Line 35:
 
<br>  
 
<br>  
  
As you can see we are presented with a refresh rate of 59.7Hz which is awesome as it matches standard VGA signal timing! (Nearly, but it's good enough&nbsp;:D)<br>  
+
As you can see we are presented with a refresh rate of 59.7Hz which nearly matches the standard VGA refresh rate. (Most likely close enough, only testing will tell)<br>  
  
 
The resolution of 160x144 however poses a problem, no such VGA resolution exists and as such we will be forced to pick a different resolution and do some pixel juggling.<br>  
 
The resolution of 160x144 however poses a problem, no such VGA resolution exists and as such we will be forced to pick a different resolution and do some pixel juggling.<br>  
  
The solution? DOUBLE&nbsp;BUFFER&nbsp;YEAAHHHH.<br>  
+
The solution? We will use double buffering and a different resolution.<br>  
  
 
<br>  
 
<br>  
  
 
<u>Double buffer</u><br>  
 
<u>Double buffer</u><br>  
 
Stole...borrowed from wikipedia:<br>
 
 
''The easiest way to explain how multiple buffering works is to take a real world example. It is a nice sunny day and you have decided to get the paddling pool out, only you can not find your garden hose. You'll have to fill the pool with buckets. So you fill one bucket (or buffer) from the tap (or faucet), turn the tap off, walk over to the pool, pour the water in, walk back to the tap to repeat the exercise. This is analogous to single buffering. The tap has to be turned off while you "process" the bucket of water.''
 
 
''Now consider how you would do it if you had two buckets. You would fill the first bucket and then swap the second in under the running tap. You then have the length of time it takes for the second bucket to fill in order to empty the first into the paddling pool. When you return you can simply swap the buckets so that the first is now filling again, during which time you can empty the second into the pool. This can be repeated until the pool is full. It is clear to see that this technique will fill the pool far faster as there is much less time spent waiting, doing nothing, while buckets fill. This is analogous to double buffering. The tap can be on all the time and does not have to wait while the processing is done.''<br>
 
 
So yeah, we're gonna fill us some buckets. (woops, I described a term under the header 'F***&nbsp;TERMS&nbsp;GIVE&nbsp;ME&nbsp;TEH&nbsp;NASTY&nbsp;STUFF' oh well, suck it up&nbsp;;P)<br>
 
 
<br>
 
 
<u>Our buffer demands</u><br>
 
  
 
To determine the size of our buffers we simply take the resolution of the gameboy screen and multiply the amount of horizontal pixels with the vertical pixels (160x144 = 23040).<br>  
 
To determine the size of our buffers we simply take the resolution of the gameboy screen and multiply the amount of horizontal pixels with the vertical pixels (160x144 = 23040).<br>  
Line 67: Line 49:
 
The 23040 bits translate roughly to 3 kilobyte.<br>  
 
The 23040 bits translate roughly to 3 kilobyte.<br>  
  
What we mustn't forget is that we are dealing with 2 BPP and as such we need 2 buffers per frame, resulting in DUAL&nbsp;DOUBLE&nbsp;BUFFERS FTW! (dual double = 4)<br>
+
Since we are dealing with 2 bits per pixel, we need 2 buffers per frame, which adds up to 4 buffers in total.
 
 
(You can also put the 2 bits per pixel in the same buffer, but this makes the project a tad more difficult and I can't be bothered atm)<br>
 
  
 
<br>  
 
<br>  
  
<u>Choosing VGA output format</u><br>  
+
<u>Resolution</u><br>  
  
First and foremost, the refresh rate HAS to be 60Hz or else shit gets too complicated.<br>  
+
Multiplying horizontal pixels by a float is only a matter of altering the pixel clock.<br>
  
Secondly, because of the display ratio of the gameboy lcd we are forced to either leave black bars around the screen or we need to display certain pixels more often than others.<br>  
+
Multiplying vertical pixels by a float however is difficult as this has to be done with a digital solution.<br>
  
Thirdly, the higher the resolution -&gt; the higher we need our pixel clock to be -&gt; more ex$pensive electronics required to handle such high clock speeds. (Graphics won't look (alot) better anyway)<br>  
+
As such we prefer to use a resolution whose vertical pixels are a multiple of 144. (Any integer)<br>
  
Fourthly, we don't need a high resolution. We need a resolution whose display ratio lies closest to that of the gameboys display ratio. This happens to be 4:3. (to reduce the black bars as much as possible)<br>  
+
There so happens to be a resolution which adheres to this: 768x576<br>
  
Thus the best choice is using the smallest universally supported resolution available for the 4:3 aspect ratio -&gt; 640x480<br>
+
<br>
 
 
<br>
 
 
 
<u>VGA Signal Timing for 640x480</u><br>
 
 
 
Source: [http://tinyvga.com/vga-timing/640x480@60Hz tinyvga.com/vga-timing/640x480@60Hz]
 
 
 
General timing<br>
 
 
 
*Screen refresh rate 60 Hz
 
*Vertical refresh 31.46875 kHz
 
*Pixel freq. 25.175 MHz
 
 
 
Horizontal timing (line)<br>Polarity of horizontal sync pulse is negative.
 
 
 
Scanline part Pixels Time [µs]<br>
 
 
 
*Visible area 640 25.422045680238
 
*Front porch 16 0.63555114200596
 
*Sync pulse 96 3.8133068520357
 
*Back porch 48 1.9066534260179
 
*Whole line 800 31.777557100298
 
 
 
Vertical timing (frame)<br>Polarity of vertical sync pulse is negative.
 
 
 
Frame part Lines Time [ms]<br>
 
 
 
*Visible area 480 15.253227408143
 
*Front porch 10 0.31777557100298
 
*Sync pulse 2 0.063555114200596
 
*Back porch 33 1.0486593843098
 
*Whole frame 525 16.683217477656<br>
 
 
 
<br>
 
 
 
= Quick Summary aka SHIIII- too many details&nbsp;:O<br>  =
 
 
 
The gameboy screen has a resolution of 160x144 and a refresh rate of 60Hz.<br>
 
 
 
To output this to a VGA display, we first need to use a double buffer for correct pixel placement and so we can time the HSYNC.<br>
 
 
 
Seeing as the gameboy has a unique display ratio we wish to use a resolution for VGA which has a similar display ratio(4:3) to avoid black bars as much as possible.<br>  
 
  
High resolutions don't add to quality and only make our hardware more complicated.<br>  
+
<u>VESA&nbsp;signal 768x576</u><br>
  
Therefore I've chosen to use 640x480 as it is a universally accepted display resolution.<br>  
+
General timing<br>Screen refresh rate 60 Hz<br>Vertical refresh 35.819672131148 kHz<br>Pixel freq. 34.96 MHz<br>Horizontal timing (line)<br>Polarity of horizontal sync pulse is negative.
 
 
<br>  
 
 
 
Hmmmmm....
 
 
 
VESA 768x576 is VERY interesting.
 
 
 
576 / 144 = 4 (Wow!)
 
 
 
768 / 160 = 4.799999....... But horizontal pixels are VERY easy to stretch.
 
 
 
We just adjust the pixel clock accordingly.
 
 
 
34.96/(768/160) = 7.283333...MHz pixel clock required o_O
 
 
 
<br>  
 
 
 
(Feasible with just a microcontroller perhaps&nbsp;:D AWESOME)  
 
 
 
<br>  
 
  
_,.-Will update project to reflect this point!-.,_
+
Scanline part Pixels Time [µs]<br>Visible area 768 21.967963386728<br>Front porch 24 0.68649885583524<br>Sync pulse 80 2.2883295194508<br>Back porch 104 2.974828375286<br>Whole line 976 27.9176201373<br>Vertical timing (frame)<br>Polarity of vertical sync pulse is positive.
  
= Plan of attack! =
+
Frame part Lines Time [ms]<br>Visible area 576 16.080549199085<br>Front porch 1 0.0279176201373<br>Sync pulse 3 0.083752860411899<br>Back porch 17 0.4745995423341<br>Whole frame 597 16.666819221968<br>

Revision as of 03:02, 25 May 2011

Project: Gameboy VGA adapter
Featured:
State Active
Members Prodigity
GitHub No GitHub project defined. Add your project here.
Description Adding VGA output to a gameboy classic
Picture
No project picture! Fill in form Picture or Upload a jpeg here


Temporary VGAmeboy logo

Introduction

The gameboy classic is a handheld video game device which invokes a feeling of nostalgia into the hearts of many gamers (and non-gamers!).

In total nearly 120 million of these devices have been sold around the world and have delivered uncountable hours of fun (and frustration.. "DAMN YOU MARIO!" heh anyone? :P).

Nowadays the gameboy has been replaced by far more advanced (read: battery-slurping) handheld devices and as such, many people have one lying around collecting dust.

As some of you might remember, the biggest problem with the gameboy classic was the unlit screen which caused any form of sunlight to render the screen into a useless plastic mirror.

REJOICE! For I have decided to add VGA output to the gameboy so you can play on 21" screens! (TAKE THAT SUN!) No more visibility problems! (Yes you can add LEDs to the back of the screen, stop being so boring :P).

Before we get down and dirty, you'll need to be sure that you understand the terms used on this page; VGA terminology.


The gameboy

Gameboy specs:

  • Resolution: 160 x 144
  • Refresh rate: 59.7Hz
  • Horizontal Sync: 9.2KHz
  • Bits per pixel: 2 (Black, Dark grey, Light grey or White)
  • Pixel Clock: 4MHz


As you can see we are presented with a refresh rate of 59.7Hz which nearly matches the standard VGA refresh rate. (Most likely close enough, only testing will tell)

The resolution of 160x144 however poses a problem, no such VGA resolution exists and as such we will be forced to pick a different resolution and do some pixel juggling.

The solution? We will use double buffering and a different resolution.


Double buffer

To determine the size of our buffers we simply take the resolution of the gameboy screen and multiply the amount of horizontal pixels with the vertical pixels (160x144 = 23040).

The 23040 bits translate roughly to 3 kilobyte.

Since we are dealing with 2 bits per pixel, we need 2 buffers per frame, which adds up to 4 buffers in total.


Resolution

Multiplying horizontal pixels by a float is only a matter of altering the pixel clock.

Multiplying vertical pixels by a float however is difficult as this has to be done with a digital solution.

As such we prefer to use a resolution whose vertical pixels are a multiple of 144. (Any integer)

There so happens to be a resolution which adheres to this: 768x576


VESA signal 768x576

General timing
Screen refresh rate 60 Hz
Vertical refresh 35.819672131148 kHz
Pixel freq. 34.96 MHz
Horizontal timing (line)
Polarity of horizontal sync pulse is negative.

Scanline part Pixels Time [µs]
Visible area 768 21.967963386728
Front porch 24 0.68649885583524
Sync pulse 80 2.2883295194508
Back porch 104 2.974828375286
Whole line 976 27.9176201373
Vertical timing (frame)
Polarity of vertical sync pulse is positive.

Frame part Lines Time [ms]
Visible area 576 16.080549199085
Front porch 1 0.0279176201373
Sync pulse 3 0.083752860411899
Back porch 17 0.4745995423341
Whole frame 597 16.666819221968