15 lines
276 B
C
15 lines
276 B
C
#ifndef _EXECUTE_H_
|
|
#define _EXECUTE_H_
|
|
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "common.h"
|
|
#include "dyn_buf.h"
|
|
#include "helpers.h"
|
|
|
|
// Executes given memory
|
|
int execute(dynamic_buffer_t *memory, int *breakpoints, int breakpoint_count);
|
|
|
|
#endif
|