about summary refs log tree commit diff stats
path: root/subx/010core.cc
diff options
context:
space:
mode:
Diffstat (limited to 'subx/010core.cc')
-rw-r--r--subx/010core.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/subx/010core.cc b/subx/010core.cc
index b59f745e..058cc065 100644
--- a/subx/010core.cc
+++ b/subx/010core.cc
@@ -83,7 +83,7 @@ End_of_program = 0;
 +load: 4 -> 0c
 +load: 5 -> 0d
 +run: add imm32 0x0d0c0b0a to reg EAX
-+reg: storing 0x0d0c0b0a in reg EAX
++run: storing 0x0d0c0b0a
 
 :(code)
 // helper for tests: load a program into memory from a textual representation
@@ -107,7 +107,6 @@ void run_one_instruction() {
     int32_t arg2 = imm32();
     trace(2, "run") << "add imm32 0x" << HEXWORD << arg2 << " to reg EAX" << end();
     BINARY_ARITHMETIC_OP(+, Reg[EAX].i, arg2);
-    trace(98, "reg") << "storing 0x" << HEXWORD << Reg[EAX].i << " in reg EAX" << end();
     break;
   }
   // End Single-Byte Opcodes
b01afa844004406da3a6ab9b306219c807e057e'>db01afa8 ^
a0331a9b ^
db01afa8 ^
4a48bedc ^
db01afa8 ^



431bbb1a ^
db01afa8 ^



a0331a9b ^
431bbb1a ^
db01afa8 ^

b75d9d45 ^

08f4628e ^
b75d9d45 ^
4a48bedc ^
b75d9d45 ^




08f4628e ^

a0331a9b ^
b75d9d45 ^



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48