about summary refs log tree commit diff stats
path: root/015immediate_addressing.cc
diff options
context:
space:
mode:
Diffstat (limited to '015immediate_addressing.cc')
-rw-r--r--015immediate_addressing.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/015immediate_addressing.cc b/015immediate_addressing.cc
index c264d5d3..a2923b7a 100644
--- a/015immediate_addressing.cc
+++ b/015immediate_addressing.cc
@@ -1235,7 +1235,7 @@ case 0xc7: {  // copy imm32 to r32
   int32_t* dest = effective_address(modrm);
   const int32_t src = next32();
   trace(Callstack_depth+1, "run") << "imm32 is 0x" << HEXWORD << src << end();
-  *dest = src;
+  *dest = src;  // Write multiple elements of vector<uint8_t> at once. Assumes sizeof(int) == 4 on the host as well.
   break;
 }