From 3bda38c2547f87a25635a886604e8b597bae5491 Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Fri, 7 Oct 2016 18:27:38 -0700 Subject: Added placeholder code for video output hardware/object processor --- jag_video.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 jag_video.c (limited to 'jag_video.c') diff --git a/jag_video.c b/jag_video.c new file mode 100644 index 0000000..fd484b2 --- /dev/null +++ b/jag_video.c @@ -0,0 +1,13 @@ +#include +#include +#include "jag_video.h" + +jag_video *jag_video_init(void) +{ + return calloc(1, sizeof(jag_video)); +} + +void jag_video_run(jag_video *context, uint32_t target_cycle) +{ + context->cycles = target_cycle; +} -- cgit v1.2.3