mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-14 20:56:44 +08:00
12 lines
209 B
C
12 lines
209 B
C
|
#include <proxmark3.h>
|
||
|
|
||
|
void CopyBootToRAM(void)
|
||
|
{
|
||
|
int i;
|
||
|
|
||
|
volatile DWORD *s = (volatile DWORD *)0x200;
|
||
|
volatile DWORD *d = (volatile DWORD *)0x200000;
|
||
|
|
||
|
for(i = 0; i < 1024; i++) *d++ = *s++;
|
||
|
}
|