次のコードでセグメンテーション違反が発生するのはなぜですか?
.text
.globl start
start:
pushq %rbp
movq %rsp, %rbp
movq $0xBEEFF00DBEEFF00D, %rax
pushq %rax
movq $0xF00DBEEFF00DBEEF, %rax
pushq %rax
movq %rbp, %rsp
popq %rbp
ret
エラー:
Segmentation fault: 11