9 lines
81 B
C
9 lines
81 B
C
|
|
|
|
#include "mc8051fun.h"
|
|
|
|
uint8_t multest(uint8_t a, uint8_t b)
|
|
{
|
|
return a*b;
|
|
}
|