Gameboy VGA adapter

From Hackerspace ACKspace
Revision as of 06:32, 20 May 2011 by Prodigity (talk | contribs) (Page creation)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
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


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)


Important VGA terms

Before we get down and dirty, you'll need to be sure that you understand the following terms:


Resolution

The resolution of a screen is the amount of distinct pixels that can be shown horizontally and vertically.

A resolution of 160x144 means that the display is 160 pixels wide and 144 pixels high (which results in a total of 23040 pixels).


Pixel

A pixel is a unit which can output light of a chosen wavelength with a chosen amplitude(intensity).

In case of colour displays, the pixel is a collection of 3 subpixels each responsible for either Red, Green or Blue (RGB). (alternatives exist but won't be discussed)


Refresh Rate

The refresh rate of a display tells us how often the entire display gets updated per second (Hertz).

It is necessary to update the display periodically as displays expect this. (60Hz - 100Hz is typical nowadays)

A clocked signal is responsible for letting the display know it's time to refresh, this signal is referred to as vertical sync or VSYNC.


Horizontal Sync

Horizontal Sync or HSYNC is a clocked signal which tells the display that we want to start sending pixel data at the start of the next line.

To show what I mean, here is an example: (Resolution: 3x3)

[1][2][3] HSYNC!

[4][5][6] HSYNC!

[7][8][9] VSYNC & HSYNC! (simultaneously)

The numbers display the order in which the pixels get updated.


Bits per pixel

The bits per pixel or BPP tells us how many different (colour) shades a single pixel can display.

The gameboy for example has 2 BPP which tells us that every pixel can have 4 different shades. (00, 01, 10, 11 -> white, light grey, dark grey, black)

To calculate the amount of shades (/colours), we simply calculate 2^BPP.


Pixel clock

This clock is responsible for sending the pixels to the display in a timely fashion so that the display will position the pixels correctly.


F*** TERMS GIVE ME TEH NASTY STUFF

Err yeah.

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 is awesome as it matches standard VGA signal timing! (Nearly, but it's good enough :D)

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? DOUBLE BUFFER YEAAHHHH.


Double buffer

Stole...borrowed from wikipedia:

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.

So yeah, we're gonna fill us some buckets. (woops, I described a term under the header 'F*** TERMS GIVE ME TEH NASTY STUFF' oh well, suck it up ;P)


Our buffer demands

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.

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 DOUBLE BUFFERS FTW! (dual double = 4)

(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)


Choosing VGA output format

First and foremost, the refresh rate HAS to be 60Hz or else shit gets too complicated.

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.

Thirdly, the higher the resolution -> the higher we need our pixel clock to be -> more ex$pensive electronics required to handle such high clock speeds. (Graphics won't look (alot) better anyway)

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)

Thus the best choice is using the smallest universally supported resolution available for the 4:3 aspect ratio -> 640x480


VGA Signal Timing for 640x480

Source: tinyvga.com/vga-timing/640x480@60Hz

General timing

  • Screen refresh rate 60 Hz
  • Vertical refresh 31.46875 kHz
  • Pixel freq. 25.175 MHz

Horizontal timing (line)
Polarity of horizontal sync pulse is negative.

Scanline part Pixels Time [µs]

  • 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)
Polarity of vertical sync pulse is negative.

Frame part Lines Time [ms]

  • 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