hardware:blitter
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
hardware:blitter [2023/08/18 20:44] – created clyde | hardware:blitter [2024/09/06 19:13] (current) – clyde | ||
---|---|---|---|
Line 2: | Line 2: | ||
The Blitter is an arrangment of logic gates, registers, and counters that may be used to copy rectangular areas up to 127x127 pixels from Sprite RAM to the framebuffer. This copy runs in parallel to CPU execution and copies at a rate of 1 pixel per CPU clock cycle. | The Blitter is an arrangment of logic gates, registers, and counters that may be used to copy rectangular areas up to 127x127 pixels from Sprite RAM to the framebuffer. This copy runs in parallel to CPU execution and copies at a rate of 1 pixel per CPU clock cycle. | ||
- | + | ||
+ | |||
+ | Using the blitter is roughly analogous to using '' | ||
===== Blitter Registers ===== | ===== Blitter Registers ===== | ||
- | There are seven registers used for preparing a copy operation and an additional address used for initiating the copy operation. In order to access these registers, DMA_ENABLE must be set. Modifying these registers during a copy operation is possible, but not presently modeled in the GameTank Emulator. | + | There are seven registers used for preparing a copy operation and an additional address used for initiating the copy operation. In order to access these registers, DMA_ENABLE must be set. |
^ Addr ^ Name ^ Use ^ | ^ Addr ^ Name ^ Use ^ | ||
Line 15: | Line 17: | ||
| $4005 | HEIGHT | Height of drawing operation. Bit 7 controls vertical flipping. | | $4005 | HEIGHT | Height of drawing operation. Bit 7 controls vertical flipping. | ||
| $4006 | START | Write 1 to clear IRQ and begin a blit operation. Write 0 to clear IRQ without starting a blit. | | | $4006 | START | Write 1 to clear IRQ and begin a blit operation. Write 0 to clear IRQ without starting a blit. | | ||
- | | $4007 | COLOR | Value to use for Color Fill Mode. Only used when DMA_COLORFILL_ENABLE is set. | | + | | $4007 | COLOR | Value to use for Color Fill Mode. Value is inverted. Only used when DMA_COLORFILL_ENABLE is set. | |
+ | |||
+ | VX, GX, and WIDTH are read both at the start of a blit and at the end of every row. COLOR is read for every pixel in color fill mode. Modifying these during a blit operation with careful timing can produce a variety of effects. However, if you want to copy the sprite normally these registers should be left alone during a blit. | ||
+ | |||
+ | For solid color fills, the value written to the COLOR register should be inverted from the expected color number. So to write a color with value 213 set the register to 42. | ||
+ | |||
+ | The values of GX and GY last used by the Blitter will also influence which part of Sprite RAM the CPU can access in addition to the Banking Register. The video section of the memory map is only big enough for a 128x128 region. So the quadrant of Sprite RAM available to the CPU is determined by the most significant bit in the Sprite RAM coordinate counters. Typically these would be set before loading sprites by running a single-pixel blit operation copying from the target quadrant to an off-screen portion of the framebuffer. | ||
+ | |||
+ | ===== Blitter Limits ===== | ||
+ | |||
+ | Every blit takes the same number of cycles as pixels it covers, including skipped transparent pixels. | ||
+ | The blitter runs on the same clock as the CPU, which happens to be set at the NTSC colorburst frequency. | ||
+ | This can be calculated as exactly 315/88 MHz, or 315, | ||
+ | However, this 59659 figure doesn' |
hardware/blitter.1692391450.txt.gz · Last modified: 2023/08/18 20:44 by clyde