backend.h 178 B

12345678910111213141516
  1. #ifndef BACKEND_H
  2. #define BACKEND_H
  3. #include "io.h"
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7. #include <stdint.h>
  8. #include "bus.h"
  9. int main_loop();
  10. #endif