about summary refs log tree commit diff stats
path: root/020byte_addressing.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-12-26 19:13:23 -0800
committerKartik Agaram <vc@akkartik.com>2020-12-26 19:13:23 -0800
commit73728ec665e8b128b63c6c633f7c1dd7cfcae2f4 (patch)
treeb09e704fad0fb64642f7fcb9d7fbb68da0c22d83 /020byte_addressing.cc
parent4b26c93e69e13462b7397f860b4f52b12aae2897 (diff)
downloadmu-73728ec665e8b128b63c6c633f7c1dd7cfcae2f4.tar.gz
7412 - drawing pixels to screen
This works, but colors are unexpected. 0xff isn't white. Lots of colors
are black. Perhaps I need to initialize a palette.
Diffstat (limited to '020byte_addressing.cc')
-rw-r--r--020byte_addressing.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/020byte_addressing.cc b/020byte_addressing.cc
index 93e269e1..399e9199 100644
--- a/020byte_addressing.cc
+++ b/020byte_addressing.cc
@@ -136,7 +136,7 @@ void test_cannot_copy_byte_to_ESP_EBP_ESI_EDI() {
 //:
 
 :(before "End Initialize Op Names")
-put_new(Name, "c6", "copy imm8 to r8/m8-at-r32 (mov)");
+put_new(Name, "c6", "copy imm8 to r8/m8-at-r32 with subop 0 (mov)");
 
 :(code)
 void test_copy_imm8_to_mem_at_rm32() {