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

View File

@@ -26,7 +26,7 @@ const unsigned char stack_pop(t_stack& stack) {
if (!stack_isempty(stack)) {
return stack.data[stack.top--];
}
return 0;
}
const unsigned char stack_peek(t_stack& stack) {