about summary refs log tree commit diff stats
path: root/cpp/090debug
blob: 08373a4958babf3e2e69bea96a273abbb6a06717 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
:(before "End Globals")
// Operator to look at fields of records.
const int _PRINT = 99;
:(before "End Primitive Recipe Numbers")
Recipe_number["$print"] = _PRINT;
assert(Next_recipe_number < _PRINT);
:(before "End Primitive Recipe Implementations")
case _PRINT: {
  if (isa_literal(instructions[pc].ingredients[0])) {
    cout << instructions[pc].ingredients[0].name << '\n';
    break;
  }
  vector<int> result(read_memory(instructions[pc].ingredients[0]));
  for (size_t i = 0; i < result.size(); ++i) {
    cout << result[i] << " ";
  }
  cout << '\n';
  break;
}