mc8051fun/multest.c
2024-06-13 22:07:19 +02:00

9 lines
81 B
C

#include "mc8051fun.h"
uint8_t multest(uint8_t a, uint8_t b)
{
return a*b;
}