This is an 8-bit example of a binary addition. Again, refer to This example demonstrates how to perform binary addition. Like normal decimal addition, you line the numbers up and add to possible combinations of sums/carry outs below.
		1	1	1	1	0	0	0	0
		1	1	0	0	1	1	0	0
	+	1	0	1	0	1	0	1	0
		---------------------------------------------------------
sum:		1	0	0	1	0	1	1	0
carry out:	1	1	1	0	1	0	0	0


NOTE: to replay, right click and select Play