Term
| Which line of code would draw a pixel correctly in video mode 4, for an odd x? |
|
Definition
| backbuffer[y * 240 + x] = c; |
|
|
Term
| What are the different byte widths that can be copied per count using DMA |
|
Definition
|
|
Term
| The game's executable is run from where instead of the system RAM? |
|
Definition
| Directly on the game Catridge ROM |
|
|
Term
| How does the GBA screen refresh? |
|
Definition
| At fixed intervals with both horizontal and vertical blank periods |
|
|
Term
| Which code waits for the beginning of the Vblank period? |
|
Definition
| While(REG_VCOUNT == 160) {} |
|
|
Term
| What are the dimensions in pixels of the GBA screen? |
|
Definition
|
|
Term
| Which GBA color format values are the same? |
|
Definition
Background, Sprite
OR MAYBE Mode 3 and 5 |
|
|
Term
| Which of the following memory sections can be accessed 32 bits at a time? |
|
Definition
|
|
Term
| Which video modes have a hardware double buffer? |
|
Definition
|
|