diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-01-17 09:17:43 -0800 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-01-17 09:17:43 -0800 |
commit | 53f7ba11cd4969d80d3d38f8321b224fd2d7006e (patch) | |
tree | 6a58595d4cf7dbc77b0dacee6ddb3f7c6681882f | |
parent | b34fa1ce6100a09f5164f5958df43df103985bc7 (diff) |
Add some dummy functions to test_int_timing so debug builds of it succeed
-rw-r--r-- | test_int_timing.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test_int_timing.c b/test_int_timing.c index 74eed05..bb96ba9 100644 --- a/test_int_timing.c +++ b/test_int_timing.c @@ -18,6 +18,20 @@ uint16_t read_dma_value(uint32_t address) return 0; } +uint32_t *render_get_framebuffer(uint8_t which, int *pitch) +{ + *pitch = 0; + return NULL; +} + +void render_framebuffer_updated(uint8_t which, int width) +{ +} + +void warning(char *format, ...) +{ +} + int main(int argc, char **argv) { |