comparison test_int_timing.c @ 1176:aa6e0914dcd7

Add some dummy functions to test_int_timing so debug builds of it succeed
author Michael Pavone <pavone@retrodev.com>
date Tue, 17 Jan 2017 09:17:43 -0800
parents 14eb8ff4fb03
children
comparison
equal deleted inserted replaced
1175:0e0386fa795c 1176:aa6e0914dcd7
14 } 14 }
15 15
16 uint16_t read_dma_value(uint32_t address) 16 uint16_t read_dma_value(uint32_t address)
17 { 17 {
18 return 0; 18 return 0;
19 }
20
21 uint32_t *render_get_framebuffer(uint8_t which, int *pitch)
22 {
23 *pitch = 0;
24 return NULL;
25 }
26
27 void render_framebuffer_updated(uint8_t which, int width)
28 {
29 }
30
31 void warning(char *format, ...)
32 {
19 } 33 }
20 34
21 35
22 int main(int argc, char **argv) 36 int main(int argc, char **argv)
23 { 37 {