A VexRiscv with AES128 on the memory mapped bus. Works in simulation and on the ULX3S.
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

#ifndef VECRISCV_HAL_H_
#define VECRISCV_HAL_H_
#include <stddef.h>
#include <stdint.h>
#include <sys/types.h>
#define printf printf_
void hal_send(const uint8_t* in, const size_t len);
void hal_send_str(const char* in);
int printf_(const char* format, ...);
void _putchar(char c);
void _write(int fd, const void* ptr, size_t len);
#endif /* VECRISCV_HAL_H_ */