comparison jag_video.c @ 1087:6433d4d05934

Added placeholder code for video output hardware/object processor
author Michael Pavone <pavone@retrodev.com>
date Fri, 07 Oct 2016 18:27:38 -0700
parents
children c0a026e974f4
comparison
equal deleted inserted replaced
1086:f0a1e0a2263c 1087:6433d4d05934
1 #include <stdint.h>
2 #include <stdlib.h>
3 #include "jag_video.h"
4
5 jag_video *jag_video_init(void)
6 {
7 return calloc(1, sizeof(jag_video));
8 }
9
10 void jag_video_run(jag_video *context, uint32_t target_cycle)
11 {
12 context->cycles = target_cycle;
13 }