x86アセンブリで関数呼び出しと戻りに取り組んでいます。クラッシュせずにこれを実行することはできないようです。bit_operations から関数 MIRROR_BYTE を呼び出しています。しかし、コードを実行するたびに、不明なエラーが発生してクラッシュします。これは、MIRROR_BYTE が終了した後にのみ発生します。完全なコードへの URL
__declspec(naked) void
bit_operations(unsigned long inputDWord, unsigned long *outputDWord)
{
__asm{
// start code for part B here
push eax
push ebx
mov ebx, [esp + 12]
push ebx //move inputDword into the stack
call MIRROR_BYTE
pop ebx //pop inputDword out of the stack
pop ebx
pop eax
// end code for part B here
ret
}
}
/*
This function takes 4 bytes as input and mirrors the value of Byte 4 (leftmost).
For example, for a byte like 10110111, the mirrored byte value is 11101101.
*/
__declspec(naked) unsigned long
MIRROR_BYTE( unsigned long inputDWord )
{
__asm{
// not sure what to do here just return dummy al from inputDword
mov al, byte ptr[esp +4]
}
}