mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-15 11:43:14 +08:00
Remove the now unnecessary files (merge-srec.pl, ldscript-ram-jtag) Note that this drops the dependency on perl for bootrom build, so end-users who don't touch the FPGA bitstream will not need perl anymore
11 lines
248 B
C
11 lines
248 B
C
#include <proxmark3.h>
|
|
|
|
void __attribute__((section("bootphase1"))) CopyBootToRAM(void)
|
|
{
|
|
int i;
|
|
|
|
volatile DWORD *s = (volatile DWORD *)0x200;
|
|
volatile DWORD *d = (volatile DWORD *)0x200000;
|
|
|
|
for(i = 0; i < 1024; i++) *d++ = *s++;
|
|
}
|