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.
12 lines
248 B
12 lines
248 B
#ifndef ADDITION_H
|
|
#define ADDITION_H
|
|
|
|
typedef unsigned int num;
|
|
|
|
void full_adder (num* sum, num* nextcarry, num number1, num number2, num carry);
|
|
|
|
unsigned int addition(num a, num b);
|
|
|
|
float addition_float(float a, float b);
|
|
|
|
#endif // ADDITION_H
|