memcpy を使用しようとしていますが、
実行時エラー: セグメンテーション エラー (コア ダンプ)
およびコンパイラ警告: 警告: 異なるサイズの整数からポインターへのキャスト [-Wint-to-pointer-cast]
これがコードです
unsigned char JMP[6] = {0xE9, 0x90, 0x90, 0x90, 0x90, 0xC3};
unsigned long JMPSize = ...;
//copy jump size to jump instruction at second byte (this is where i get the error)
memcpy((uint8_t*)JMP[1],(void*)JMPSize, 4);