Add copyrights for all files to comply with the GPL v2.

This commit is contained in:
Jackson Bryn
2016-08-14 22:07:17 -04:00
parent be871d8c71
commit 291ac890e2
422 changed files with 1272 additions and 92 deletions

View File

@@ -1,3 +1,6 @@
/* Copyright holders: Mahod, Tenshi
see COPYING for more details
*/
#define BCD(X) (((X) % 10) | (((X) / 10) << 4))
#define DCB(X) ((((X) & 0xF0) >> 4) * 10 + ((X) & 0x0F))