GameBoy Advance Multiboot & Dumper

Dependencies:   SDFileSystem mbed

Committer:
akkera102
Date:
Mon Nov 24 13:28:15 2014 +0000
Revision:
0:66a93ef88e4e
1st;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
akkera102 0:66a93ef88e4e 1 #ifndef CRC_H
akkera102 0:66a93ef88e4e 2 #define CRC_H
akkera102 0:66a93ef88e4e 3
akkera102 0:66a93ef88e4e 4 #include "mbed.h"
akkera102 0:66a93ef88e4e 5
akkera102 0:66a93ef88e4e 6 uint32_t crcU32n(uint32_t d);
akkera102 0:66a93ef88e4e 7 uint32_t crcU32(uint32_t d);
akkera102 0:66a93ef88e4e 8 void crcReset(void);
akkera102 0:66a93ef88e4e 9
akkera102 0:66a93ef88e4e 10
akkera102 0:66a93ef88e4e 11 #endif