diff options
Diffstat (limited to '043space.cc')
-rw-r--r-- | 043space.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/043space.cc b/043space.cc index 37117439..ddff7a4a 100644 --- a/043space.cc +++ b/043space.cc @@ -117,7 +117,7 @@ long long int address(long long int offset, long long int base) { //? cout << base << '\n'; //? 2 if (offset >= static_cast<long long int>(Memory[base])) { // todo: test - raise << "location " << offset << " is out of bounds " << Memory[base] << '\n'; + raise << "location " << offset << " is out of bounds " << Memory[base] << " at " << base << '\n'; } return base+1 + offset; } |