summaryrefslogtreecommitdiff
path: root/jag_video.c
blob: fd484b2840d0493c6db641661483a32de6d499ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdint.h>
#include <stdlib.h>
#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;
}