You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
367 B

  1. #ifndef VECRISCV_HAL_H_
  2. #define VECRISCV_HAL_H_
  3. #include <stddef.h>
  4. #include <stdint.h>
  5. #include <sys/types.h>
  6. #define printf printf_
  7. void hal_send(const uint8_t* in, const size_t len);
  8. void hal_send_str(const char* in);
  9. int printf_(const char* format, ...);
  10. void _putchar(char c);
  11. void _write(int fd, const void* ptr, size_t len);
  12. #endif /* VECRISCV_HAL_H_ */