mc8051fun/multest.c

9 lines
81 B
C
Raw Normal View History

2024-06-13 22:07:19 +02:00
#include "mc8051fun.h"
uint8_t multest(uint8_t a, uint8_t b)
{
return a*b;
}