Files
lab-rv32i-freertos-mutex/src/common/lab_io.h
T
2026-07-21 19:14:19 +02:00

11 lines
198 B
C

#ifndef LAB_IO_H
#define LAB_IO_H
#include <stdint.h>
void lab_puts( const char * text );
void lab_put_u32( uint32_t value );
void lab_exit( uint32_t code ) __attribute__( ( noreturn ) );
#endif