apple1-videocard-lib/lib/sprites.h

21 lines
648 B
C
Raw Normal View History

2021-12-22 14:11:55 +00:00
#ifndef SPRITES_H
#define SPRITES_H
2021-12-17 08:26:42 +00:00
// clears all the sprites
void tms_clear_sprites() {
// fills first sprite pattern with 0
tms_set_vram_write_addr(TMS_SPRITE_PATTERNS);
for(byte i=0;i<8;i++) {
TMS_WRITE_DATA_PORT(0);
}
// set sprite coordinates to (0,0) and set pattern name 0
tms_set_vram_write_addr(TMS_SPRITE_ATTRS);
for(byte i=0;i<32;i++) {
2021-12-22 17:41:26 +00:00
TMS_WRITE_DATA_PORT(0); NOP; NOP; NOP; NOP; // y coordinate
TMS_WRITE_DATA_PORT(0); NOP; NOP; NOP; NOP; // x coordinate
TMS_WRITE_DATA_PORT(0); NOP; NOP; NOP; NOP; // name
TMS_WRITE_DATA_PORT(0); NOP; NOP; NOP; NOP; // color
2021-12-17 08:26:42 +00:00
}
}
2021-12-22 14:11:55 +00:00
#endif