Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
質問があります。C++ でメモリ アドレス X の数値の値を確認するにはどうすればよいですか。 私は次のようなものを作りたい:
mov bx, 1024d mov ax, [bx]
アセンブリから、斧が私の結果になります。
ご支援ありがとうございます。 PSポインタとメモリアドレスを使い始めたばかりです
C++ では、そのアドレスの値は*reinterpret_cast<uint16_t*>(1024).
*reinterpret_cast<uint16_t*>(1024)