GBDK 2020 Docs  4.3.0
API Documentation for GBDK 2020
hblankcpy.h
Go to the documentation of this file.
1 #ifndef __HBLANKCPY_H_INCLUDE__
2 #define __HBLANKCPY_H_INCLUDE__
3 
4 #include <stdint.h>
5 
20 void hblank_copy_vram(const uint8_t * sour, uint8_t count);
21 
37 void hblank_cpy_vram(const uint8_t * sour, uint8_t count);
38 
48 inline void hblank_copy(uint8_t * dest, const uint8_t * sour, uint16_t size) {
50  hblank_copy_vram(sour, size >> 4);
51 }
52 
53 #endif
void hblank_copy(uint8_t *dest, const uint8_t *sour, uint16_t size)
Definition: hblankcpy.h:48
uint8_t * hblank_copy_destination
void hblank_copy_vram(const uint8_t *sour, uint8_t count)
void hblank_cpy_vram(const uint8_t *sour, uint8_t count)
unsigned char uint8_t
Definition: stdint.h:51
unsigned short int uint16_t
Definition: stdint.h:52