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.
ポインターを使用して、アドレス0x67ABと値でメモリ位置を割り当てます。0x1234ポインターを使用してメモリ内の固定位置を割り当てようとしていますが、使用していませんmalloc()
0x67AB
0x1234
malloc()
PIC やコントローラーのように、OK の場合に特定のアドレスへの書き込みを知っていると仮定します。
#include <stdint.h> int16_t *ptr = (int16_t *) 0x67AB; *ptr = 0x1234;
整数のエンディアンが指定されていないため、バイト単位の設定では期待どおりの動作が得られない場合があります。