VDP implemented.

This commit is contained in:
2017-01-27 18:56:52 +01:00
parent 402286c048
commit 4498330918
7 changed files with 374 additions and 3 deletions

8
vdp.h Normal file
View File

@@ -0,0 +1,8 @@
#pragma once
void vdp_init();
void vdp_quit();
void vdp_data_out(const unsigned char& value);
void vdp_cmd_out(const unsigned char& value);
unsigned char vdp_in();