libc8
CHIP-8 utility library
Loading...
Searching...
No Matches
instruction.h
Go to the documentation of this file.
1
9#ifndef LIBC8_INSTRUCTION_H
10#define LIBC8_INSTRUCTION_H
11
12#include "c8/chip8.h"
13
14int parse_instruction(c8_t* c8);
15
16#endif
int parse_instruction(c8_t *c8)
Execute the instruction at c8->pc
Definition: instruction.c:130
Represents current state of the CHIP-8 interpreter.
Definition: chip8.h:56