11 lines
226 B
C
11 lines
226 B
C
#ifndef __RUNNER_H__
|
|
#define __RUNNER_H__
|
|
|
|
#include <stdint.h>
|
|
#include "instr.h"
|
|
#include "mem.h"
|
|
|
|
uint8_t makeTick(prog_counter_t* programCounter, instr_h_func* funcarr, device_mem_t* devMem);
|
|
|
|
|
|
#endif // ifndef __RUNNER_H__
|