MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / lcd_fill_bytes

Function lcd_fill_bytes

core/lcd.c:216–221  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

214}
215
216static inline void lcd_fill_bytes(uint8_t bytes) {
217 assert((bytes % sizeof(uint32_t)) == 0);
218 mem_dma_cpy(&lcd.fifo[lcd.pos / sizeof(uint32_t)], lcd.upcurr, bytes);
219 lcd.pos += bytes;
220 lcd.upcurr += bytes;
221}
222
223static uint32_t lcd_words(uint8_t words) {
224 assert(words > 0);

Callers 1

lcd_dmaFunction · 0.85

Calls 1

mem_dma_cpyFunction · 0.85

Tested by

no test coverage detected