about summary refs log tree commit diff stats
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rw-r--r--cpp/010vm2
-rw-r--r--cpp/019address2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/010vm b/cpp/010vm
index 5d3ddd53..8d1c71df 100644
--- a/cpp/010vm
+++ b/cpp/010vm
@@ -151,7 +151,7 @@ void setup_recipes() {
 //: Helpers
 
 :(code)
-// indent members to avoid generating prototypes for them
+// indent methods to avoid generating prototypes for them
   instruction::instruction() :is_label(false), operation(IDLE) {}
   void instruction::clear() { is_label=false; label.clear(); operation=IDLE; ingredients.clear(); products.clear(); }
 
diff --git a/cpp/019address b/cpp/019address
index 0b39c71d..58d852cd 100644
--- a/cpp/019address
+++ b/cpp/019address
@@ -47,7 +47,7 @@ bool has_property(reagent x, string name) {
 }
 
 reagent deref(reagent x) {
-//?   cout << "deref\n"; //? 1
+//?   cout << "deref: " << x.to_string() << "\n"; //? 2
   static const int ADDRESS = Type_number["address"];
   reagent result;
   assert(x.types[0] == ADDRESS);
tik Agaram <vc@akkartik.com> 2019-08-26 11:55:26 -0700 committer Kartik Agaram <vc@akkartik.com> 2019-08-26 11:59:21 -0700 5592 - switch register names to lowercase' href='/akkartik/mu/commit/076zero-out.subx?h=hlt&id=333525360b22f3d3ea31db46a4d2f1b4edbfebdb'>33352536 ^
71eb22a5 ^
33352536 ^


c6ec8fa3 ^

33352536 ^
6070c23e ^
c6ec8fa3 ^
33352536 ^
c6ec8fa3 ^
33352536 ^
c6ec8fa3 ^
33352536 ^
c6ec8fa3 ^


33352536 ^



7a583220 ^
33352536 ^

c6ec8fa3 ^


7a583220 ^
33352536 ^


c6ec8fa3 ^
33352536 ^

c6ec8fa3 ^

33352536 ^
c6ec8fa3 ^


33352536 ^
c6ec8fa3 ^
33352536 ^
c6ec8fa3 ^


33352536 ^
c6ec8fa3 ^


33352536 ^
7a583220 ^
33352536 ^

c6ec8fa3 ^


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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84