py_interface.h 325 B

123456789101112131415
  1. #ifndef _PY_INTERFACE_H_
  2. #define _PY_INTERFACE_H_
  3. #include "py_functions.h"
  4. #include "../devices/peripherals/port1.h"
  5. #include <Python.h>
  6. void print_serial (Emulator *emu, char *buf);
  7. void print_console (Emulator *emu, const char *buf);
  8. void send_control (Emulator *emu, uint8_t opcode, void *data, size_t size);
  9. #endif