mirror of
https://github.com/alfishe/amiga-bootcamp.git
synced 2026-06-13 00:26:28 +00:00
Sprites and DMA
This commit is contained in:
parent
f19e3f16b5
commit
a83d89ce22
15 changed files with 1306 additions and 141 deletions
|
|
@ -152,3 +152,9 @@ WaitBlit(); /* graphics.library — waits and resets to safe state */
|
|||
- NDK39: `hardware/blit.h`, `graphics/blitattr.h`
|
||||
- graphics.library Autodocs: `BltBitMap`, `BltTemplate`, `BltClear`
|
||||
- http://amigadev.elowar.com/read/ADCD_2.1/Hardware_Manual_guide/node006D.html
|
||||
|
||||
## See Also
|
||||
|
||||
- [DMA Architecture](../common/dma_architecture.md) — Blitter-Nasty (BLTPRI), bus arbitration, CPU starvation mechanics
|
||||
- [Blitter Programming](../../08_graphics/blitter_programming.md) — Advanced minterms, cookie-cut, area fill
|
||||
- [AGA Blitter](../aga_a1200_a4000/aga_blitter.md) — 64-bit FMODE blitter
|
||||
|
|
|
|||
|
|
@ -105,3 +105,9 @@ BPL2PTH/BPL2PTL $DFF0E4/$DFF0E6
|
|||
- ADCD 2.1 Hardware Manual — Agnus/DMA chapters
|
||||
- NDK39: `hardware/dmabits.h`, `hardware/intbits.h`, `hardware/custom.h`
|
||||
- *Amiga Hardware Reference Manual* 3rd ed.
|
||||
|
||||
## See Also
|
||||
|
||||
- [DMA Architecture](../common/dma_architecture.md) — scanline slot allocation, bus arbitration, bandwidth calculations
|
||||
- [ECS Chipset](../ecs_a600_a3000/chipset_ecs.md) — Super Agnus and ECS Denise enhancements
|
||||
- [AGA Chipset](../aga_a1200_a4000/chipset_aga.md) — Alice, Lisa, FMODE
|
||||
|
|
|
|||
|
|
@ -129,6 +129,12 @@ SetPointer(window, pointer_data, height, width, x_offset, y_offset);
|
|||
ClearPointer(window); /* restore system default */
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [ECS Sprite Enhancements](../ecs_a600_a3000/ecs_sprites.md) — border sprites, independent resolution (SPRES)
|
||||
- [AGA Sprite Enhancements](../aga_a1200_a4000/aga_sprites.md) — 32/64px width, FMODE, color bank selection
|
||||
- [Sprites — Graphics Programming Guide](../../08_graphics/sprites.md) — OS API, techniques, antipatterns, decision guides
|
||||
|
||||
## References
|
||||
|
||||
- ADCD 2.1 Hardware Manual — Sprites chapter
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue